Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - linli

#1
newLISP and the O.S. / A bug on Windows
November 09, 2009, 12:14:23 AM
I had the following problem:

> (change-dir "h:")
true
> (real-path)
"H:\"
> (change-dir "c:\a\b")
true
> (real-path)
"c:\a\b"
> (change-dir "h:")
true
> (real-path)
"H:\"
> (change-dir "c:")
true
> (real-path)
"c:\a\b"

In the last step, I was trying to change the dir to c:, but it remains in c:ab
#2
Whither newLISP? / suggestion
November 08, 2009, 11:19:04 PM
On Windows, can we make (directory? "c:\") return true? Currently it returns nil and (directory? "c:\\") returns true.
#3
in newlisp, is it possible to copy files from/to a windows network place, e.g. \computernameshared_folder
#4
newLISP and the O.S. / A suggestion
September 28, 2009, 05:38:45 AM
I just noticed that when I do (directory? "c:"), I got nil. Should it return true instead? The drive can be considered as the "root" directory on that drive.
#5
Hi, today I just tried to copy and delete files from a windows mapped drive with copy-file and delete-file, but I got I/O error in copy-file and the delete-file just return nil without any effect. Does anyone have the same problem here? Is it a bug?