Network drive I/O error on windows Xp

Machine-specific discussion
Unix, Linux, OS X, OS/2, Windows, ..?
Locked
linli
Posts: 8
Joined: Tue Sep 01, 2009 3:13 pm

Network drive I/O error on windows Xp

Post by linli »

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?

m35
Posts: 171
Joined: Wed Feb 14, 2007 12:54 pm
Location: Carifornia

Post by m35 »

I'm not able to find any errors with copy-file or delete-file on a mapped network drive. Are you sure your permissions are correct?


I did however find another bug.

Code: Select all

newLISP v.10.1.4 on Win32 IPv4, execute 'newlisp -h' for more info.

> (write-file "test" "")
0
> (copy-file "test" "again")

ERR: I/O error in function copy-file
>
Seems newLISP doesn't like copying files of 0 length.

linli
Posts: 8
Joined: Tue Sep 01, 2009 3:13 pm

Post by linli »

Exactly! The file I was trying to copy and delete is of 0 length! Thank you.

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Post by Lutz »

This works in version 10.1.5, released next week.

Locked