![]() |
2010-03-16
, 01:09
|
|
Posts: 83 |
Thanked: 4 times |
Joined on Mar 2010
@ Birmingham England
|
#1
|
![]() |
2010-03-16
, 01:21
|
Posts: 16 |
Thanked: 2 times |
Joined on Jan 2010
|
#2
|
The Following User Says Thank You to matze For This Useful Post: | ||
![]() |
2010-03-16
, 01:47
|
|
Posts: 83 |
Thanked: 4 times |
Joined on Mar 2010
@ Birmingham England
|
#3
|
Connect the N900 to your desktop machine in mass storage mode and then try to delete the folders. I don't know your OS, but you probably have to go into the folder properties at first and disable "read only".
This might be the easiest way without using xterm.
![]() |
2010-03-16
, 02:22
|
Posts: 189 |
Thanked: 47 times |
Joined on Nov 2009
|
#4
|
cd MyDocs/Downloads/NameOfExtractedFolder for i in `find . | grep desktop.ini`; do rm -i "$i"; done
The Following User Says Thank You to lfcobra For This Useful Post: | ||
![]() |
2010-03-16
, 03:16
|
|
Posts: 83 |
Thanked: 4 times |
Joined on Mar 2010
@ Birmingham England
|
#5
|
As with running any terminal commands you should fully understand what you are doing before preceding.
open xterm and type:
The first line will change directories into the extracted folder directory.Code:cd MyDocs/Downloads/NameOfExtractedFolder for i in `find . | grep desktop.ini`; do rm -i "$i"; done
The second line will search all subdirectories for desktop.ini and then ask you if you want to delete it.
That should work. If you have any issues report back.
![]() |
2010-03-16
, 03:28
|
Posts: 189 |
Thanked: 47 times |
Joined on Nov 2009
|
#6
|
~ $ cd MyDocs/Downloads/Folder/Q/Mazda (Mx5)
-sh: syntax error: "(" unexpected
it wont read the bracket, and it wont let me rename the folder in file manager.
The Following User Says Thank You to lfcobra For This Useful Post: | ||
![]() |
2010-03-16
, 08:30
|
|
Posts: 83 |
Thanked: 4 times |
Joined on Mar 2010
@ Birmingham England
|
#7
|
![]() |
2010-03-16
, 08:45
|
Posts: 44 |
Thanked: 38 times |
Joined on Mar 2010
@ Germany
|
#8
|
The Following User Says Thank You to BigLebowski For This Useful Post: | ||
![]() |
2010-03-16
, 09:23
|
|
Posts: 83 |
Thanked: 4 times |
Joined on Mar 2010
@ Birmingham England
|
#9
|
~ $ cd MyDocs/Downloads/Folder/
~ $ find . -name desktop.ini -exec rm -i {} \;
HTH
![]() |
2010-03-16
, 10:19
|
Posts: 44 |
Thanked: 38 times |
Joined on Mar 2010
@ Germany
|
#10
|