home hardware prices news articles forums photos user reviews
Go Back   Tech Support Forums - TechIMO.com > PC Hardware and Tech > General Tech Discussion
Ask a Tech Support Question (free)!

files doing stupid strange things

Reply
Get bargains at  »  Dealighted.com
 
Thread Tools Search this Thread
Currently Active Users: 2105
Discussions: 200,948, Posts: 2,379,384, Members: 246,309
Old July 1st, 2009, 12:37 AM     #21 (permalink)
Member
 
Join Date: Nov 2004
Posts: 143
ok, it's asking for the drive's volume label... ??

i tried putting in "I" as that is what letter my external drive uses, but that didn't work.
Where do I find this?
__________________
Signature does not meet TechIMO standards. Please see the FAQ for what's allowed in signatures.
chal7ds is offline   Reply With Quote
Old July 1st, 2009, 06:08 AM     #22 (permalink)
He who is Nude.....
 
Nude_Lewd_Man's Avatar
 
Join Date: Mar 2007
Location: Prolly off subject..
Posts: 4,880
That would be the 'name' for the drive. Most often any internal disks are (by default) called "Local Disk". Open your "My Computer" and check what it is called there....that's the 'volume label'...
__________________
I've seen the light... It was green, flashy and attached to a Network Interface Card...
Whenever someone says "You can't miss it" I invariably do...
Nude_Lewd_Man is online now   Reply With Quote
Old July 1st, 2009, 06:16 AM     #23 (permalink)
He who is Nude.....
 
Nude_Lewd_Man's Avatar
 
Join Date: Mar 2007
Location: Prolly off subject..
Posts: 4,880
Quote:
Originally Posted by chal7ds View Post
Ok, if I do this conversion, is that all I'll have to do? In other words, right when I do the conversion, do you think it will fix the messed up jpeg image? Or are there other steps after you do the conversion?

The conversion is only going to change the File System from FAT to NTFS... It isn't likely to change the contents of the drive/partition...

Having said that, I would ensure that any data that is on it is copied (or backed up) just in case there are any issues with the conversion...
Nude_Lewd_Man is online now   Reply With Quote
Old July 1st, 2009, 08:30 AM     #24 (permalink)
Member
 
Join Date: Nov 2004
Posts: 143
Ok, conversion was successful and it looks as though all my files are intact, so that's good.

However, I went back to the folder where the jpeg was and it is still sitting as it was before, not able to delete it, move it, etc.

So what should I do now?
chal7ds is offline   Reply With Quote
Old July 2nd, 2009, 07:05 PM     #25 (permalink)
He who is Nude.....
 
Nude_Lewd_Man's Avatar
 
Join Date: Mar 2007
Location: Prolly off subject..
Posts: 4,880
I think I had the same (or at least similar) issue before...

I would try to delete the file/s using the 'Command Line' utility that is built in...

I can't remember it well enough to talk you through it (I'm on holibobs in Majorca, sending from my BlackBerry) but I'm sure that if you go to google (Google) and search for "command line delete file" - or something like that - then you should be able to find it...

You could also try M$'s Knowledge Base (which I think is Microsoft Help and Support) and search there... I'm 99% certain that you will find the answer to how to delete the file/s that way...


Let us know how it goes...!!
Nude_Lewd_Man is online now   Reply With Quote
Old July 3rd, 2009, 01:37 AM     #26 (permalink)
Member
 
Join Date: Nov 2004
Posts: 143
Ok, I found some documentation on how to delete on google; however, i can't get it to work because when i open the 'cmd' thingy on my computer, it automatically starts the command line with C:\Documents and Settings\....etc.. so everytime I try to enter DEL and then the file name, it can't find it because it's looking in the C drive, not the I drive, which is the drive where I want to delete the file.

I tried to delete the C:\Docu.. line from the cmd window and just replace with the I: path name that I need but you can't delete that line from there.

Here's the instructions I found on google for deleting:

Syntax
DEL [options] [/A:file_attributes] files_to_delete
Key
files_to_delete : This may be a filename, a list of files or a Wildcard options
/P Give a Yes/No Prompt before deleting.
/F Ignore read-only setting and delete anyway (FORCE)
/S Delete from all Subfolders (DELTREE)
/Q Quiet mode, do not give a Yes/No Prompt before deleting.

/A Select files to delete based on file_attributes
file_attributes:
R Read-only -R NOT Read-only
S System -S NOT System
H Hidden -H NOT Hidden
A Archive -A NOT ArchiveWildcards: These can be combined with part of a filename * Match any characters ? Match any ONE characterExamples:

To delete HelloWorld.TXT
DEL HelloWorld.TXT

To delete "Hello Big World.TXT"
DEL "Hello Big World.TXT"

To delete all files that start with the letter A
DEL A*

To delete all files that end with the letter A
DEL *A.*

To delete all files with a .DOC extension
DEL *.DOC

To delete all read only files
DEL /a:R *

To delete all files including any that are read only
DEL /F *


So, I guess what I need help with is how to start the correct command line. For example, since I am wanting to delete this file on my I drive, here is what I probably need to enter in at first:

I:\chal's folder\interests\Film & Theater\films\Horror films (with Horror films being the folder that contains the bad jpeg image)

BUT....How in the heck do I make that the main command line in the cmd box and NOT the C:\etcetc.. stuff ??

Or, if I got this idea all wrong, please advise if I'm way off here...
chal7ds is offline   Reply With Quote
Old July 3rd, 2009, 09:28 AM     #27 (permalink)
He who is Nude.....
 
Nude_Lewd_Man's Avatar
 
Join Date: Mar 2007
Location: Prolly off subject..
Posts: 4,880
Hi,

You won't be able to delete to text in the Command Line (CLI) as it is telling you where it is working at the moment...

What you need to do is use the command to tell it to change the working directory...

In the CLI, you need to type:
cd\ (this will drop most of the text off from the prompt, leaving C:\>)
cd I:\ (this should then display I:\>)
cd "I:\chal's folder\interests\Film & Theater\films\Horror films" (you MUST use the quotes, otherwise it won't be able to work with the spaces..! This will now be using the 'parent folder' as the working directory.)
dir (this will list anything/everything that it can see in that folder, and you should now be able to use the command you found to delete any files you want.


Bear in mind that the CLI treats all spaces as a new command, which is why you have to use " around the entire target name for it to work...

I said about using the 'cd\' command. This wipes the folder structure back to the root of the current drive. If you only want to go back one level, then you should use 'cd..' instead.
Nude_Lewd_Man is online now   Reply With Quote
Old July 4th, 2009, 08:39 AM     #28 (permalink)
Member
 
Join Date: Nov 2004
Posts: 143
Hi NLM,

Ok, I managed to get your first code to work, which cuts off everything but C:\>

However, when I type cd I:\ it doesn't display I:\> for some reason. It just opens up a new line with the repeat of C:\> again. ??
chal7ds is offline   Reply With Quote
Old July 11th, 2009, 10:34 AM     #29 (permalink)
He who is Nude.....
 
Nude_Lewd_Man's Avatar
 
Join Date: Mar 2007
Location: Prolly off subject..
Posts: 4,880
Hi,

I'm back in the Land Of Eng again now...

I haven't ever seen that myself, and without being able to see it myself I can't think of any ways to force the computer to pick it up - normally I can either VNC, RemoteDesktop or just replicate issue/s to work on them...

I would just double-check that the computer is 'seeing' the drive as the I: drive, just to ensure that it hasn't changed to another letter...
Nude_Lewd_Man is online now   Reply With Quote
Old July 11th, 2009, 10:42 AM     #30 (permalink)
Member
 
Join Date: Nov 2004
Posts: 143
yeah, it's definitely seeing it as I. In fact, if I open up MyComputer, and look in there at the drives..it shows it as the I: drive. It does say 'WDC Combo' in front of the paraentheses though..do i maybe have to type that too in the cmd box? For ex:

cd WDC Combo I:\

?
chal7ds is offline   Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search

Similar Threads
Thread Thread Starter Forum Replies Last Post
Stupid things to post in your screenshots RobRich IMO Community 23 June 9th, 2009 11:40 AM
Stupid things done in a car the mitch IMO Community 22 June 28th, 2005 07:13 PM
Strange things are happening? atomicstomp Networking and Internet 3 September 24th, 2003 03:32 PM
The stupid things we do tony_j15 General Tech Discussion 57 August 1st, 2003 11:47 AM


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Most Active Discussions
Making Health Care Worse (169)
The disrespect of Obama by Russian .. (20)
Is It Just Me? (2934)
Wireless Televisions. (11)
windows 7 problem (7)
CPU fan stops spinning randomly (8)
Regular Build (6)
Is the PSU I received dead? (12)
radeon x850xt platinum & shader.. (5)
Print spooler problem (15)
HIS HD5770 graphic card question (15)
windows vista security holes (9)
Install XP pro and a Vista laptop ?.. (11)
Foreign voltage (10)
Recent Discussions
My monitor won't turn on after instal.. (0)
Internet Lost (0)
Graphics Card Upgrade Questions (0)
Graphics Card Upgrade Question (2)
Asus P4G8X Mobo (6)
radeon x850xt platinum & shader 3 (5)
Xbox 360 GTA: SA disk error (1)
Is the PSU I received dead? (12)
How to convert MP3's (2)
windows 7 internet problem (5)
Multiple Restarts Required at Boot (0)
BSOD On Startup (ntoskrnl.exe) (2)
Print spooler problem (15)
Laptop with wireless problem. (1)
Wireless Televisions. (11)
Have you switched yet? (86)
screen resolution vs monitor size (2)
sms storage to PC (0)
Regular Build (6)
Open With ..... Win7 (0)
java code for fibonacci (1)
[F@H SPAM 11/16/09] ! 1/2 months to r.. (35)
windows 7 problem (7)
CPU fan stops spinning randomly (8)
Partition Magic caused HDD problem (3)


All times are GMT -4. The time now is 08:05 PM.
TechIMO Copyright 2009 All Enthusiast, Inc.



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28