Folder location interrupted

 
Thread Tools Search this Thread
Operating Systems OS X (Apple) Folder location interrupted
# 8  
Old 01-28-2014
Like I showed: ls -i
# 9  
Old 01-29-2014
Quote:
Originally Posted by sceltecs
i think i have got a problem now,
after trying to fix the folders, i restarted in windows (to see if someting happend there) and it did some harddisk check at startup and deleted the entries of the folders with untypable characters(i think)...
It must have (correctly) decided they were invalid folders and removed them. It may have put them somewhere like c:\found.000
# 10  
Old 02-04-2014
Yes. OS X GUI allows / in file names, but OS X unix cleverly replaces / with : which is allowed in unix. There's a sort of understanding between the GUI and the gooey unixie goodness.

You will see the folder in the GUI with the slash in its name, but the CLI will see a colon.
Unfortunately, files cannot have a colon in their names in Windows.

Your move command didn't work because you attempted to move the folder to the exact same location without renaming it.
mv /pathtofolder/with\:colon /pathtofolder/without\ colon

would have worked. That renamed folder would then show up in the OS X GUI, CLI, and Windows. (unless some "hidden" attribute was in effect)
This User Gave Thanks to [MA]Flying_Meat For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Copying files from various folders to similar folder structure in another location

Hi, I need to write a script the has to copy the files from folders and subfolders to the same folder structure located in another location. Ex: mainfolder1 file1,file2,file3 subfolder1(file1,etc) subfolder2(file1,etc) to another folder location of same folder structure. rsync is not... (7 Replies)
Discussion started by: Raji Perumal
7 Replies

2. UNIX for Dummies Questions & Answers

Is original file modified when pigz is interrupted?

I had to stop a pigz (parallel gzip) compression before it completed. Is the original uncompressed file changed/corrupted? I was under the impression that the original file is not changed during compression, though it is deleted if the compression is successful. (1 Reply)
Discussion started by: colin123
1 Replies

3. UNIX Desktop Questions & Answers

arecord not interrupted after specified duration

I have used the arecord command like this arecord -d 1 test.wav It is keep on waiting. I need to manually interrupt it by ctrl-c. Why it is not interrupting after one second? The arecord version which I am using is : arecord: version 1.0.23 by Jaroslav Kysela (3 Replies)
Discussion started by: thillai_selvan
3 Replies

4. Shell Programming and Scripting

Copy files in thumbnail folder to a secondary location for Amazon S3

Hello all! I am trying to create a script that will copy files from one location, to another but only folders that are filled with thumbnails to an exact directory replica in the second location. For example: /images/2012/01/19/Event/Photographer/thumbnails to ... (4 Replies)
Discussion started by: Buzzman25
4 Replies

5. AIX

User script folder standard location ?

I am starting to accumulate a few scripts that I working on to replace operational scripts and to have a few for my personal usage. I am not an admin, just an operator. They are currently located inside the /tmp folder. I know they should not be there but since we have no system admin (someone... (4 Replies)
Discussion started by: Browser_ice
4 Replies

6. UNIX for Dummies Questions & Answers

auto change filemanager folder colors dependent on location in directory hierarchy

Hello, Is it possible to make a file manager use different "colored folders" when browsing specific directories? For example, if I open a gnome file manager and browse my windows share at, smb://192.168.1.101/z/ , can I make those folders appear green? And when I open another instance of... (0 Replies)
Discussion started by: bz43
0 Replies

7. Shell Programming and Scripting

automated sftp procedure interrupted

Dear experts, I have a local computer and remote computer (only sftp accessed). I want to delete files x and y in both local and remote computer using the following automated script: sftp $remote > /dev/null < mdel.file the file mdel.file has been pre-created, and its content is cd... (2 Replies)
Discussion started by: boyin.huang
2 Replies
Login or Register to Ask a Question