I was playing around with Apache VFS API to move files back and forth between my local machine and remote linux host over sftp and it converted some directories to files somehow on my linux host from drw-r----- to -rw-r-----

Does anyone know how to convert it back to a directory?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

You have to remove the file and then make a directory containing the file's original name.

The problem is not that a directory was converted to a file, the problem was that a directory was deleted, and a file of the same name was created.

link|improve this answer
I see.. The problem is with this 2 lines: localFile = manager.resolveFile("C:/test.txt"); remoteFile[i].copyFrom(localFile, Selectors.SELECT_SELF); So if a remoteFile happens to be a directory it will be deleted and file will be created instead. I guess it should throw some sort of exception instead. Anyways thanks for helping me guys – Dima Jan 31 '11 at 20:12
feedback

Remove and create again:

rm foo
mkdir foo

Anyway if former directory is now file it is empty. In this case it is not a problem to re-create it.

link|improve this answer
feedback

You can't convert a file to a directory. You can remove the file and create a directory with the same name.

Is there something strange with the changed directories?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.