如何在python中创建文件传输程序

时间:2016-09-13 09:22:07

标签: python

标题可能与我的问题无关,因为我实际上并不想要无线文件传输脚本,我需要一个文件管理器类型。

我想要一些可以将手机与我的电脑连接的东西(例如:热点和wifi)然后我想通过发送所有文件和文件夹的列表来显示文本文件浏览器(我有代码) os.listdir(),每当所选选项是文件(os.path.isdir() == False)时,我想传输文件并运行它(如:图片,视频等)。

我编写的文件浏览器代码使用qpython在Windows和Android上运行(经过一些更改后)。

我的代码是

import os
def FileBrowser(cwd = os.getcwd()):
  while True:
    if cwd[-1:] != "\\":
      cwd = cwd + "\\"
    files = os.listdir(cwd)
    count = 1
    tmpp = ""
    print("\n\n" + "_"*50 +"\n\n")
    print(cwd + "\n")
    for f in files:
      if os.path.isdir(cwd + f) == True:
        s1 = str(count) + ". " + f
        tmps1 = 40 - (len(s1)+5)
        t2 = int(tmps1/3)
        s1 = s1 + " " * t2 + "-" * (tmps1 - t2)
        print(s1 + "<dir>")
      else:
        print(str(count) + ". " + f + tmpp)
      count = count + 1
    s = raw_input("Enter the file/Directory: ")
    if s == "...":
      tmp1 = cwd.count("\\")
      tmp2 = cwd.rfind("\\")
      if tmp1 > 1:
        cwd = cwd[0:tmp2]
        tmp2 = cwd.rfind("\\")
        cwd = cwd[0:tmp2+1]
        continue
      else:
        continue
    else:
      s = int(s) - 1
    if os.path.isdir(cwd + files[s]) == True:
      cwd = cwd + files[s] + "\\"
      continue
    else:
      f1 = files[s]
      break
  return f1
def main():
  fb = FileBrowser()
main()

2 个答案:

答案 0 :(得分:3)

使用Python的一种非常天真的方法是转到要提供的目录的根目录并使用:

python -m SimpleHTTPServer

在端口8000上连接到它。

答案 1 :(得分:3)

您可能需要socket programming。在您的PC和智能手机之间创建链接(连接),然后尝试传输文件