[squeak-dev] The Inbox: Files-ct.188.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Oct 30 21:48:29 UTC 2021


A new version of Files was added to project The Inbox:
http://source.squeak.org/inbox/Files-ct.188.mcz

==================== Summary ====================

Name: Files-ct.188
Author: ct
Time: 30 October 2021, 11:48:28.117304 pm
UUID: 95994730-0ba6-764c-91d0-ce03473f9221
Ancestors: Files-eem.187

Improves documentation of #deleteDirectory:.

=============== Diff against Files-eem.187 ===============

Item was changed:
  ----- Method: FileDirectory>>deleteDirectory: (in category 'file operations') -----
  deleteDirectory: localDirName
+ 	"Delete the directory with the given name in this directory. Fail if the path is bad, if a directory by that name does not exist, or if the directory is not empty."
- 	"Delete the directory with the given name in this directory. Fail if the path is bad or if a directory by that name does not exist."
  
   	self primDeleteDirectory: (self fullNameFor: localDirName) asVmPathName.
  !

Item was changed:
  ----- Method: FileDirectory>>primDeleteDirectory: (in category 'private') -----
  primDeleteDirectory: fullPath
+ 	"Delete the directory named by the given path. Fail if the path is bad, if a directory by that name does not exist, or if the directory is not empty."
- 	"Delete the directory named by the given path. Fail if the path is bad or if a directory by that name does not exist."
  
   	<primitive: 'primitiveDirectoryDelete' module: 'FilePlugin'>
  	self primitiveFailed
  !



More information about the Squeak-dev mailing list