Changeset 1710
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/copyf.c ¶
r1686 r1710 529 529 if (!IsFile(dir)) { 530 530 if (!strchr(dir, '?') && !strchr(dir, '*')) 531 wipeallf( "%s\\*", dir);531 wipeallf(FALSE, "%s\\*", dir); 532 532 DosError(FERR_DISABLEHARDERR); 533 533 if (DosDeleteDir(dir)) { … … 616 616 else { 617 617 // remove directory 618 wipeallf( "%s\\*", oldname);618 wipeallf(FALSE, "%s\\*", oldname); 619 619 DosError(FERR_DISABLEHARDERR); 620 620 if (DosDeleteDir(oldname)) { … … 735 735 */ 736 736 737 INT wipeallf( CHAR *string, ...)737 INT wipeallf(BOOL ignorereadonly, CHAR *string, ...) 738 738 { 739 739 FILEFINDBUF3 *f; … … 744 744 va_list ap; 745 745 INT rc; 746 static BOOL ignorereadonly = FALSE;747 746 748 747 va_start(ap, string); … … 819 818 if (f->attrFile & FILE_DIRECTORY) { 820 819 if (strcmp(f->achName, ".") && strcmp(f->achName, "..")) { 821 wipeallf( "%s/%s", ss, mask); // recurse to wipe files820 wipeallf(FALSE, "%s/%s", ss, mask); // recurse to wipe files 822 821 DosError(FERR_DISABLEHARDERR); 823 822 // remove directory -
TabularUnified trunk/dll/copyf.h ¶
r1686 r1710 29 29 INT make_deleteable(CHAR * filename, INT error, BOOL Dontcheckreadonly); 30 30 INT unlinkf(CHAR * string); 31 INT wipeallf( CHAR * string, ...);31 INT wipeallf(BOOL ignorereadonly, CHAR * string, ...); 32 32 33 33 #endif // COPYF_H -
TabularUnified trunk/dll/fm3res.rc ¶
r1690 r1710 3378 3378 IDS_LOCKEDFILEWARNING "The file %s is locked! Do you wish to unlock it and complete the requested operation" 3379 3379 IDS_LOCKEDFILEWARNINGTITLE "Locked file!" 3380 IDS_READONLYFILEWARNING "The file %s is Read Only! Do you wish continue the requested operation "3380 IDS_READONLYFILEWARNING "The file %s is Read Only! Do you wish continue the requested operation?" 3381 3381 IDS_READONLYFILEWARNINGTITLE "Read Only file!" 3382 3382 IDS_NOTARGETSET "A target directory has not been set" -
TabularUnified trunk/dll/init.c ¶
r1673 r1710 588 588 strcpy(enddir, ffb.achName); 589 589 if (ffb.attrFile & FILE_DIRECTORY) { 590 wipeallf( "%s\\*", s);590 wipeallf(FALSE, "%s\\*", s); 591 591 DosDeleteDir(s); 592 592 } … … 628 628 DosForceDelete(szTempFile); 629 629 if (pTmpDir) { 630 wipeallf( "%s\\*", pTmpDir);630 wipeallf(FALSE, "%s\\*", pTmpDir); 631 631 DosDeleteDir(pTmpDir); 632 632 } … … 789 789 if (!strstr(temp, "FM/2") && 790 790 !strstr(temp, "AV/2")) { 791 wipeallf( "%s\\*", szTempName);791 wipeallf(TRUE, "%s\\*", szTempName); 792 792 DosDeleteDir(szTempName); 793 793 } -
TabularUnified trunk/dll/seeall.c ¶
r1686 r1710 1074 1074 WinSetWindowText(WinWindowFromID(hwndFrame, SEEALL_STATUS), 1075 1075 prompt); 1076 error = (APIRET) wipeallf( "%s%s*",1076 error = (APIRET) wipeallf(FALSE, "%s%s*", 1077 1077 list[x], 1078 1078 (*list[x] && -
TabularUnified trunk/dll/worker.c ¶
r1706 r1710 1695 1695 &fsa, (ULONG) sizeof(FILESTATUS3)); 1696 1696 if (fsa.attrFile & FILE_DIRECTORY) { 1697 error = (APIRET) wipeallf( "%s%s*",1697 error = (APIRET) wipeallf(FALSE, "%s%s*", 1698 1698 wk->li->list[x], 1699 1699 (*wk->li->list[x] &&
Note:
See TracChangeset
for help on using the changeset viewer.