Помогите вспомнить название функции C

tolik1

Нужно: написать программку, которая бы получала список файлов в директории. Не могу вспомнить название и посмотреть не где.
Желательно ANSI C, если там такой нет, то тогда под юникс.
Или, может, кто-то знает программку, которая бы во всех файлах, соответствующих маске, заменяла CRLF на CR и наоборот.

CapitanJack

man tr ?

Ivan8209

man opendir
man readdir
---
"А я обучался азбуке с вывесок,
листая страницы железа и жести."

Ivan8209

Кстати, а почему не
man ls
---
"А я обучался азбуке с вывесок,
листая страницы железа и жести."

tolik1

Спасибо. Подойдёт.
2:

$ whatis tr
tr (1) - translate characters


Что ты хотел этим сказать?

CapitanJack

ну и еще truncate. в твоем конкретно случае вроде транкейт \r

Ivan8209

sed "y/x//" удаляет знаки "x"
Как это в "tr" записывается, не помню.
Удалять можно.
Не знаю только, насколько там сильна привязка к построковой обработке.
---
"А я обучался азбуке с вывесок,
листая страницы железа и жести."

a10031

я ламо, но вот что первое пришло в голову
for i in `ls *.txt`; do cat $i |perl -e 'foreach (<>) {$_ =~ s/\n/\r\n/g;print;}' > $i.new; done

Ivan8209

man xargs
man sed
Расширь своё сознание.
---
"Мы диалектику учили не по Гегелю.
Бряцанием боёв она врывалась в стих..."

tolik1

Ага, спасибо!

Ivan8209

Кстати, а почему бы не http://www.ugcs.caltech.edu/gema/ ?
gema -p "\r\n=\r" filename
gema -p "\r\n=\r" *.txt ?
---
"А я обучался азбуке с вывесок,
листая страницы железа и жести."

Chupa

dos2unix

Ivan8209

Не то: CR LF -> CR
dos2mac ?
---
...Я работаю антинаучным аферистом...

a10031

отцы проснулись

yuda

Как сию проблему предлагают решать под виндой (страничка из MSDN 04-03):

Listing the Files in a Directory
The following example calls FindFirstFile, FindNextFile, and FindClose to list the files in a specified directory.
Note that the only limitation on the number of files a directory can contain is the storage capacity of the disk.
#define _WIN32_WINNT 0x0501
#include "windows.h"
int
main(int argc, char *argv[])
{
WIN32_FIND_DATA FindFileData;
HANDLE hFind = NULL;
LPCTSTR lpDirSpec[MAXPATH]; // directory specification
wsprintf ("Target directory is %s.\n", argv[1]);
strncpy (lpDirSpec, argv[1], sizeof(argv[1];
strncpy (lpDirSpec, "\*", 3);
hFind = FindFirstFile(lpDirSpec, &FindFileData);
if (hFind == INVALID_HANDLE_VALUE) {
wsprintf ("Invalid file handle. Error is %u\n", GetLastError;
return (-1);
} else {
wsprintf ("First file name is %s\n", FindFileData.cFileName);
while (FindNextFile(hFind, &FindFileData) != 0) {
wsprintf ("Next file name is %s\n", FindFileData.cFileName);
}

DWORD dwError = GetLastError;
if (dwError == ERROR_NO_MORE_FILES) {
FindClose(hFind);
} else {
wsprintf ("FindNextFile error. Error is %u\n", dwError);
return (-1);
}
}
return (0);
}

Ivan8209

Короче.
У меня под ДОС сейчас работает такое:

for %i in (*.txt) do gema -p "\n=" %i %i


Gema рулит.
Собирается под "Линукс" с помощью "cd туда-то; cc -o gema *.c"
У меня "make" почему-то не работал.
---
"А я обучался азбуке с вывесок,
листая страницы железа и жести."

tolik1

Вот ещё один способ, как это сделать:
под Unix:


zip -ll zipfile.zip *
unzip zipfile.zip
rm zipfile.zip


под Windows:


pkzip -ll zipfile.zip *
pkunzip zipfile.zip
rm zipfile.zip

mama10001

Отрывок из моих запасников /unix/


#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/file.h>
#include <time.h>
#include <errno.h>
#include <dirent.h>
int s;
char *path = "/home";
DIR *dir;
struct dirent *dp;
struct stat stats;
dir = opendir (path); s = 1;
if (dir == NULL)
{
_perror ("opendir", path); s = 0;
}
while (s == 1)
{
errno = 0;
if dp = readdir (dir != NULL)
{
sprintf(full_path, "%s/%s", path, dp->d_name);
j = lstat(full_path, &stats);
if (j != 0){ _perror("lstat", full_path); break;}
}
else
{
if (errno == 0) break;
else
{
_perror ("readdir", full_path); break;
}
}
}
closedir(dir);

Ivan8209

Изврат!
Info-Zip есть и под Win
---
...Я работаю...

shlyumper

А еще в комплекте с DJGPP были замечательные утилитки
dtou и utod
Оставить комментарий
Имя или ник:
Комментарий: