Announcement

Collapse
No announcement yet.

File CreationTime mystery

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #41
    Q&D (quick and dirty) backups.. I delete an entire folder from my backup disk,
    then copy the same folder from workdisk to backup..so later I want to manually check when I made the last backup.
    Code:
      Source$ = "D:\data"
      BackupDrive$ =  "L:"
      Call DeleteSubfolders (BackupDrive$) 
      Dest$ = BackupDrive$ & "\" & DATE$
      MKDIR  Dest$
      CALL Backup (Source$, Dest$)
    MCM
    Michael Mattias
    Tal Systems (retired)
    Port Washington WI USA
    [email protected]
    http://www.talsystems.com

    Comment

    Working...
    X