在函数中传递相对路径

时间:2011-06-20 17:40:23

标签: python path

有人可以告诉我以下函数声明是否是将相对路径传递给函数的正确方法?这个电话只接受一个变量。当我包含第二个变量(绝对路径)时,我的功能不起作用。

 def extract(tar_url, extract_path='.'):

无效的通话:

 extract(chosen, path)

这有效,但不提取:

 extract(chosen)

完整代码:

 def do_fileExtract(self, line):
   defaultFolder = "Extracted"
   if not defaultFolder.endswith(':') and not os.path.exists('c:\\Extracted'):
       os.mkdir('c:\\Extracted')
       raw_input("PLACE .tgz FILES in c:\Extracted AT THIS TIME!!! PRESS ENTER WHEN FINISHED!")
   else:
       pass

   def extract(tar_url, extract_path='.'):
       print tar_url
       tar = tarfile.open(tar_url, 'r')
       for item in tar:
          tar.extract(item, extract_path)
          if item.name.find(".tgz") != -1 or item.name.find(".tar") != -1:
             extract(item.name, "./" + item.name[:item.name.rfind('/')])


   userpath = "Extracted"
   directory = os.path.join("c:\\", userpath)
   os.chdir(directory)
   path=os.getcwd() #Set log path here
   dirlist=os.listdir(path)


   files = [fname for fname in os.listdir(path) 
                  if fname.endswith(('.tgz','.tar'))]

   for item in enumerate(files):
       print "%d- %s" % item

   try:
       idx = int(raw_input("\nEnter the file's number:\n"))
   except ValueError:
       print "You fail at typing numbers."

   try:
       chosen = files[idx]
   except IndexError:
       print "Try a number in range next time."


   newDir = raw_input('\nEnter a name to create a folder a the c: root directory:\n')
   selectDir = os.path.join("c:\\", newDir)
   path=os.path.abspath(selectDir)

   if not newDir.endswith(':') and not os.path.exists(selectDir):
      os.mkdir(selectDir)


   try:

       extract(chosen, path)
       print 'Done'
   except:
       name = os.path.basename(sys.argv[0])
       print chosen

1 个答案:

答案 0 :(得分:1)

看起来你错过了"PLACE .tgz FILES in c:\Extracted AT THIS TIME!!! PRESS ENTER WHEN FINISHED!"中的转义字符 我不认为raw_input将提示字符串视为原始字符串,只是用户输入。 但这不应该影响程序的功能。

您是在Unix还是Windows?我的印象是在Unix上使用/正斜杠而不是\\反斜杠作为分隔符。

我在这个文件上测试了一些代码: http://simkin.asu.edu/geowall/mars/merpano0.tar.gz

以下代码:

>>> from os import chdir
>>> import tarfile
>>> chdir(r'C:\Users\Acer\Downloads')
>>> tar_url = 'merpano0.tar.gz'
>>> print tar_url
merpano0.tar.gz
>>> tar = tarfile.open(tar_url, 'r')
>>> extract_path = 'C:\\Users\\Acer\\Downloads\\test\\'
>>> for item in tar:
    tar.extract(item, extract_path)

干净利落地执行,没有问题。在test目录中,我得到了一个包含一些文件的文件夹,与原始tar文件完全相同。你能解释一下你的代码中你可能正在做些什么吗?