I need to write something into files, which I am passing through command line in python. I am using the below code mycode.py
JavaScript
x
10
10
1
import csv
2
import sys
3
4
path = sys.argv[1]
5
row = ['4', ' Danny', ' New York']
6
7
with open(r"path" , 'w') as csvFile:
8
writer = csv.writer(csvFile)
9
writer.writerow(row)
10
When I execute it, the file is not written, but when I hardcode path as
JavaScript
1
3
1
with open(r"C:UsersvenkatDesktoppythonsam.csv", 'w') as
2
csvFile:
3
the file is being written, Please let me know if I am missing anything.
One more requirement is I have to pass only the directory in open, and append some file name. For example: I can pass
C:UsersvenkatDesktoppython, sam.csv
I have to append to the directory in code.
Advertisement
Answer
You should use the path
variable’s value.
Replace
JavaScript
1
2
1
with open(r"path" , 'w') as csvFile:
2
with
JavaScript
1
3
1
with open(path , 'w') as csvFile:
2
^^^^
3
If you want to append one file to a directory path, you could use os
package.
JavaScript
1
2
1
file_path = os.path.join(path, file)
2