PackageDescription: FileMan(Bundle)


File Man

Last published: October 25, 2010 by 'umejava'


FileMan 0.3 for VisualWorks
Copyright (C) 2006-2008 Masashi Umezawa

FileMan provides a handy way for manipulating files and directories.
- Small and Simple API
- Platform independent (pathname representation is portable among Win, Mac, and Linux)
- Dialect independent (Squeak and VW versions are available)

"Before"
subDir := Filename defaultDirectory construct: 'subDir'.
subDir ensureDirectory.
[str := (subDir construct: 'file1') writeStream.
str nextPutAll: 'Hello!']
ensure: [str close].

"After installation of FileMan"
'./subDir' asDirectoryEntry at: 'file2' put: 'Hello!'.

FileMan is licenced under MIT Style License.