mirror of
https://github.com/gryf/ADFlib.git
synced 2026-02-07 08:45:55 +01:00
144 lines
3.2 KiB
C
144 lines
3.2 KiB
C
/*
|
|
* rename.c
|
|
*/
|
|
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include"adflib.h"
|
|
|
|
|
|
void MyVer(char *msg)
|
|
{
|
|
fprintf(stderr,"Verbose [%s]\n",msg);
|
|
}
|
|
|
|
|
|
/*
|
|
*
|
|
*
|
|
*/
|
|
int main(int argc, char *argv[])
|
|
{
|
|
struct Device *hd;
|
|
struct Volume *vol;
|
|
struct File *fic;
|
|
unsigned char buf[1];
|
|
struct List *list, *cell;
|
|
|
|
adfEnvInitDefault();
|
|
|
|
/* create and mount one device */
|
|
hd = adfCreateDumpDevice("newdev", 80, 2, 11);
|
|
if (!hd) {
|
|
fprintf(stderr, "can't mount device\n");
|
|
adfEnvCleanUp(); exit(1);
|
|
}
|
|
|
|
adfDeviceInfo(hd);
|
|
|
|
if (adfCreateFlop( hd, "empty", FSMASK_FFS|FSMASK_DIRCACHE )!=RC_OK) {
|
|
fprintf(stderr, "can't create floppy\n");
|
|
adfUnMountDev(hd);
|
|
adfEnvCleanUp(); exit(1);
|
|
}
|
|
|
|
vol = adfMount(hd, 0, FALSE);
|
|
if (!vol) {
|
|
adfUnMountDev(hd);
|
|
fprintf(stderr, "can't mount volume\n");
|
|
adfEnvCleanUp(); exit(1);
|
|
}
|
|
|
|
adfVolumeInfo(vol);
|
|
|
|
fic = adfOpenFile(vol, "file_1a","w");
|
|
if (!fic) { adfUnMount(vol); adfUnMountDev(hd); adfEnvCleanUp(); exit(1); }
|
|
adfWriteFile(fic,1,buf);
|
|
adfCloseFile(fic);
|
|
|
|
fic = adfOpenFile(vol, "file_24","w");
|
|
if (!fic) { adfUnMount(vol); adfUnMountDev(hd); adfEnvCleanUp(); exit(1); }
|
|
adfWriteFile(fic,1,buf);
|
|
adfCloseFile(fic);
|
|
|
|
fic = adfOpenFile(vol, "dir_1a","w");
|
|
if (!fic) { adfUnMount(vol); adfUnMountDev(hd); adfEnvCleanUp(); exit(1); }
|
|
adfWriteFile(fic,1,buf);
|
|
adfCloseFile(fic);
|
|
|
|
fic = adfOpenFile(vol, "dir_5u","w");
|
|
if (!fic) { adfUnMount(vol); adfUnMountDev(hd); adfEnvCleanUp(); exit(1); }
|
|
adfWriteFile(fic,1,buf);
|
|
adfCloseFile(fic);
|
|
|
|
puts("Create file_1a, file_24, dir_1a, dir_5u (with this order)");
|
|
|
|
cell = list = adfGetDirEnt(vol,vol->curDirPtr);
|
|
while(cell) {
|
|
printEntry(cell->content);
|
|
cell = cell->next;
|
|
}
|
|
adfFreeDirList(list);
|
|
|
|
putchar('\n');
|
|
|
|
puts("Rename dir_5u into file_5u");
|
|
|
|
adfRenameEntry(vol, vol->curDirPtr, "dir_5u", vol->curDirPtr, "file_5u");
|
|
|
|
cell = list = adfGetDirEnt(vol,vol->curDirPtr);
|
|
while(cell) {
|
|
printEntry(cell->content);
|
|
cell = cell->next;
|
|
}
|
|
adfFreeDirList(list);
|
|
|
|
putchar('\n');
|
|
|
|
puts("Rename file_1a into dir_3");
|
|
|
|
adfRenameEntry(vol, vol->curDirPtr,"file_1a", vol->curDirPtr,"dir_3");
|
|
|
|
cell = list = adfGetDirEnt(vol,vol->curDirPtr);
|
|
while(cell) {
|
|
printEntry(cell->content);
|
|
cell = cell->next;
|
|
}
|
|
adfFreeDirList(list);
|
|
|
|
puts("Create dir_5u, Rename dir_3 into toto");
|
|
/*
|
|
fic = adfOpenFile(vol, "dir_5u","w");
|
|
if (!fic) { adfUnMount(vol); adfUnMountDev(hd); adfEnvCleanUp(); exit(1); }
|
|
adfWriteFile(fic,1,buf);
|
|
adfCloseFile(fic);
|
|
*/
|
|
adfCreateDir(vol,vol->curDirPtr,"dir_5u");
|
|
|
|
cell = list = adfGetDirEnt(vol, vol->curDirPtr);
|
|
while(cell) {
|
|
printEntry(cell->content);
|
|
cell = cell->next;
|
|
}
|
|
adfFreeDirList(list);
|
|
|
|
adfRenameEntry(vol, vol->curDirPtr,"dir_1a", vol->curDirPtr,"longfilename");
|
|
|
|
cell = list = adfGetDirEnt(vol,vol->curDirPtr);
|
|
while(cell) {
|
|
printEntry(cell->content);
|
|
cell = cell->next;
|
|
}
|
|
adfFreeDirList(list);
|
|
|
|
adfUnMount(vol);
|
|
adfUnMountDev(hd);
|
|
|
|
adfEnvCleanUp();
|
|
|
|
return 0;
|
|
}
|