Changeset 3848
- Timestamp:
- 08/03/08 17:22:49 (4 months ago)
- Files:
-
- trunk/tango/io/vfs/ZipFolder.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/io/vfs/ZipFolder.d
r3688 r3848 436 436 debug( ZipFolder ) 437 437 Stderr(" sync: destroying temp file").newline; 438 auto tempFilePath = tempFile.path.dup; 439 delete tempFile; 438 440 439 debug( ZipFolder ) 441 440 Stderr.formatln(" sync: renaming {} to {}", 442 tempFilePath, path); 443 tempFilePath.rename(path); 441 tempFile, path); 442 443 Path.rename (tempFile.path, path); 444 444 } 445 445












