vote up 2 vote down star

Hi,

I want to delete some files with python scripts (while using Windows). I have tried the following code:

>>>import os
>>> os.remove ('D:\new.docx')

but I am getting the following error:

Traceback (most recent call last):

  File "<pyshell#1>", line 1, in -toplevel-

    os.remove ('D:\new.docx')
OSError: [Errno 22] Invalid argument: 'D:\new.docx'

Can anyone here help me with this?

THanks.

Gillani

flag

40% accept rate

3 Answers

vote up 5 vote down check

A few options:

Escape the backslash:

>>> os.remove('D:\\new.docx')

The runtime library in Windows accepts a forward slash as a separator:

>>> os.remove('D:/new.docx')

Raw string:

>>> os.remove(r'D:\new.docx')
link|flag
thanks.............! – Gillani Sep 16 at 11:26
vote up 6 vote down

\ is the escape char for python. try replacing it with \\ .

ex:

os.remove ('D:\\new.docx')
link|flag
vote up -2 vote down

Thanks Alterlife.......!

It worked.......!

THanks for ur help!!

Regards, Gillani

link|flag
4  
Glad to help :-) . You should probably have used the comments box to respond. People tend to respond badly to comments left in the answers section. – Alterlife Sep 16 at 10:25
lol....I will take care of it in future...! – Gillani Sep 16 at 11:27

Your Answer

Get an OpenID
or

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