我最近一直在尝试用 python 制作一个程序,将文件下载到特定目录。我正在使用 Ubuntu,到目前为止我有这个

import os
import getpass
import urllib2

y = getpass.getuser()

if not os.access('/home/' + y + '/newdir/', os.F_OK):
    print("Making New Directory")
    os.mkdir('/home/' + y + '/newdir/')

url = ("http://example.com/Examplefile.ex")
file_name = url.split('/')[-1]
u = urllib2.urlopen(url)
f = open(file_name, 'wb')
meta = u.info()
file_size = int(meta.getheaders("Content-Length")[0])
print "Downloading: %s Bytes: %s" % (file_name, file_size)

file_size_dl = 0
block_sz = 8192
while True:
    buffer = u.read(block_sz)
    if not buffer:
    break

    file_size_dl += len(buffer)
    f.write(buffer)
    status = r"%10d  [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size)
    status = status + chr(8)*(len(status)+1)
    print status,

f.close()

当前将文件下载到同一目录,我如何更改它下载到的目录?

修复了新代码:

import os
import getpass
import urllib2

y = getpass.getuser()

if not os.access('/home/' + y + '/newdir/', os.F_OK):
    print("Making New Directory")
    os.mkdir('/home/' + y + '/newdir/')

os.chdir('/home/'+y+'/newdir/')

url = ("http://example.com/Examplefile.ex")
file_name = url.split('/')[-1]
u = urllib2.urlopen(url)
f = open(file_name, 'wb')
meta = u.info()
file_size = int(meta.getheaders("Content-Length")[0])
print "Downloading: %s Bytes: %s" % (file_name, file_size)

file_size_dl = 0
block_sz = 8192
while True:
    buffer = u.read(block_sz)
    if not buffer:
    break

    file_size_dl += len(buffer)
    f.write(buffer)
    status = r"%10d  [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size)
    status = status + chr(8)*(len(status)+1)
    print status,

f.close()
有帮助吗?

解决方案

抱歉的人我是愚蠢的,但要回答我添加的问题

os.chdir('/home/' + y + '/newdir/')
.

在第一个IF语句之后:

import os
import getpass
import urllib2

y = getpass.getuser()

if not os.access('/home/' + y + '/newdir/', os.F_OK):
    print("Making New Directory")
    os.mkdir('/home/' + y + '/newdir/')

os.chdir('/home/'+y+'/newdir/')

url = ("http://example.com/Examplefile.ex")
file_name = url.split('/')[-1]
u = urllib2.urlopen(url)
f = open(file_name, 'wb')
meta = u.info()
file_size = int(meta.getheaders("Content-Length")[0])
print "Downloading: %s Bytes: %s" % (file_name, file_size)

file_size_dl = 0
block_sz = 8192
while True:
    buffer = u.read(block_sz)
    if not buffer:
    break

    file_size_dl += len(buffer)
    f.write(buffer)
    status = r"%10d  [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size)
    status = status + chr(8)*(len(status)+1)
    print status,

f.close()
.

其他提示

将目录传递给 open() 在文件名中。

使用 os.path.join 将目录添加到 file_name:

    from os.path import join

    directory = join('/home/', y, '/newdir/')
    # You can now use directory everywhere you used to build the directory name

    # and then, later in the script:
    file_name = url.split('/')[-1]
    file_name = join(directory, file_name)
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top