Changeset 1710


Ignore:
Timestamp:
Feb 9, 2014, 9:07:48 PM (11 years ago)
Author:
Gregg Young
Message:

Actually commit the fix for suppressing the readonly warning on temp archive files. Ticket 497

Location:
trunk/dll
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/dll/copyf.c

    r1686 r1710  
    529529        if (!IsFile(dir)) {
    530530          if (!strchr(dir, '?') && !strchr(dir, '*'))
    531             wipeallf("%s\\*", dir);
     531            wipeallf(FALSE, "%s\\*", dir);
    532532          DosError(FERR_DISABLEHARDERR);
    533533          if (DosDeleteDir(dir)) {
     
    616616          else {
    617617            // remove directory
    618             wipeallf("%s\\*", oldname);
     618            wipeallf(FALSE, "%s\\*", oldname);
    619619            DosError(FERR_DISABLEHARDERR);
    620620            if (DosDeleteDir(oldname)) {
     
    735735 */
    736736
    737 INT wipeallf(CHAR *string, ...)
     737INT wipeallf(BOOL ignorereadonly, CHAR *string, ...)
    738738{
    739739  FILEFINDBUF3 *f;
     
    744744  va_list ap;
    745745  INT rc;
    746   static BOOL ignorereadonly = FALSE;
    747746
    748747  va_start(ap, string);
     
    819818      if (f->attrFile & FILE_DIRECTORY) {
    820819        if (strcmp(f->achName, ".") && strcmp(f->achName, "..")) {
    821           wipeallf("%s/%s", ss, mask);  // recurse to wipe files
     820          wipeallf(FALSE, "%s/%s", ss, mask);   // recurse to wipe files
    822821          DosError(FERR_DISABLEHARDERR);
    823822          // remove directory
  • TabularUnified trunk/dll/copyf.h

    r1686 r1710  
    2929INT make_deleteable(CHAR * filename, INT error, BOOL Dontcheckreadonly);
    3030INT unlinkf(CHAR * string);
    31 INT wipeallf(CHAR * string, ...);
     31INT wipeallf(BOOL ignorereadonly, CHAR * string, ...);
    3232
    3333#endif  // COPYF_H
  • TabularUnified trunk/dll/fm3res.rc

    r1690 r1710  
    33783378    IDS_LOCKEDFILEWARNING                 "The file %s is locked! Do you wish to unlock it and complete the requested operation"
    33793379    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?"
    33813381    IDS_READONLYFILEWARNINGTITLE          "Read Only file!"
    33823382    IDS_NOTARGETSET                       "A target directory has not been set"
  • TabularUnified trunk/dll/init.c

    r1673 r1710  
    588588        strcpy(enddir, ffb.achName);
    589589        if (ffb.attrFile & FILE_DIRECTORY) {
    590           wipeallf("%s\\*", s);
     590          wipeallf(FALSE, "%s\\*", s);
    591591          DosDeleteDir(s);
    592592        }
     
    628628  DosForceDelete(szTempFile);
    629629  if (pTmpDir) {
    630     wipeallf("%s\\*", pTmpDir);
     630    wipeallf(FALSE, "%s\\*", pTmpDir);
    631631    DosDeleteDir(pTmpDir);
    632632  }
     
    789789            if (!strstr(temp, "FM/2") &&
    790790                !strstr(temp, "AV/2")) {
    791               wipeallf("%s\\*", szTempName);
     791              wipeallf(TRUE, "%s\\*", szTempName);
    792792              DosDeleteDir(szTempName);
    793793            }
  • TabularUnified trunk/dll/seeall.c

    r1686 r1710  
    10741074              WinSetWindowText(WinWindowFromID(hwndFrame, SEEALL_STATUS),
    10751075                               prompt);
    1076               error = (APIRET) wipeallf("%s%s*",
     1076              error = (APIRET) wipeallf(FALSE, "%s%s*",
    10771077                                        list[x],
    10781078                                        (*list[x] &&
  • TabularUnified trunk/dll/worker.c

    r1706 r1710  
    16951695                                 &fsa, (ULONG) sizeof(FILESTATUS3));
    16961696                if (fsa.attrFile & FILE_DIRECTORY) {
    1697                   error = (APIRET) wipeallf("%s%s*",
     1697                  error = (APIRET) wipeallf(FALSE, "%s%s*",
    16981698                                            wk->li->list[x],
    16991699                                            (*wk->li->list[x] &&
Note: See TracChangeset for help on using the changeset viewer.