Questions tagged «file»

可通过基于字符串的名称或路径访问的任意信息块或用于存储信息的资源。文件可用于计算机程序,并且通常基于某种持久性存储。

4
从列表中随机选择50个项目写入文件
到目前为止,我已经弄清楚了如何导入文件,创建新文件以及使列表随机化。 我在从列表中随机选择50个项目以写入文件时遇到麻烦吗? def randomizer(input,output1='random_1.txt',output2='random_2.txt',output3='random_3.txt',output4='random_total.txt'): #Input file query=open(input,'r').read().split() dir,file=os.path.split(input) temp1 = os.path.join(dir,output1) temp2 = os.path.join(dir,output2) temp3 = os.path.join(dir,output3) temp4 = os.path.join(dir,output4) out_file4=open(temp4,'w') random.shuffle(query) for item in query: out_file4.write(item+'\n') 因此,如果总随机文件为 example: random_total = ['9','2','3','1','5','6','8','7','0','4'] 我想要3个文件(out_file1 | 2 | 3),其中第一个随机集为3,第二个随机集为3,第三个随机集为3(对于此示例,但我要创建的文件应该有50个) random_1 = ['9','2','3'] random_2 = ['1','5','6'] random_3 = ['8','7','0'] 因此,不会包含最后一个“ 4”,这很好。 如何从随机选择的列表中选择50? 更好的是,如何从原始列表中随机选择50个?
129 python  file  list  select  random 






1
在Ruby中获取文件名和扩展名
我正在开发一个程序,用于从YouTube下载视频,将其转换为MP3并为文件创建目录结构。 我的代码是: FileUtils.cd("#{$musicdir}/#{$folder}") do YoutubeDlhelperLibs::Downloader.get($url) if File.exists?('*.mp4') puts 'Remove unneeded tempfile' Dir['*.mp4'].each do |waste| File.delete(waste) end else puts 'Temporary file already deleted' end Dir['*.m4a'].each do |rip| rip.to_s rip.split puts 'Inside the function' puts rip end end 第一个进入已经创建的音乐文件夹。我正在执行里面get。之后,我在目录中有两个文件:“ xyz.mp4”和“ xyz.m4a”。 我想获取不带扩展名的文件名,以便可以不同地处理两个文件。 我使用的是数组,但一场比赛的数组听起来很疯狂。 还有其他想法吗?
123 ruby  file 

4
python请求文件上传
我正在执行一个使用Python请求库上传文件的简单任务。我搜索了Stack Overflow,似乎没有人遇到相同的问题,即服务器未收到该文件: import requests url='http://nesssi.cacr.caltech.edu/cgi-bin/getmulticonedb_release2.cgi/post' files={'files': open('file.txt','rb')} values={'upload_file' : 'file.txt' , 'DB':'photcat' , 'OUT':'csv' , 'SHORT':'short'} r=requests.post(url,files=files,data=values) 我用文件名填充了'upload_file'关键字的值,因为如果我将其保留为空白,则表示 Error - You must select a file to upload! 现在我明白了 File file.txt of size bytes is uploaded successfully! Query service results: There were 0 lines. 仅当文件为空时才会出现。因此,我对如何成功发送文件感到困惑。我知道该文件有效,因为如果我访问此网站并手动填写表格,它将返回一个很好的匹配对象列表,这就是我想要的。我非常感谢所有提示。 其他一些相关的线程(但不能回答我的问题): 使用POST从Python脚本发送文件 http://docs.python-requests.org/zh-CN/latest/user/quickstart/#response-content 使用请求上传文件并发送额外的数据 http://docs.python-requests.org/zh_CN/latest/user/advanced/#body-content-workflow

11
如何使用PHP强制下载文件
我想要求用户使用PHP访问网页时要下载文件。我认为这与file_get_contents,但不确定如何执行。 $url = "http://example.com/go.exe"; 下载文件后,header(location)它不会重定向到另一个页面。它只是停止。
122 php  file  download 

8
如何解压缩filename.tar.gz文件
我想提取一个名为的档案filename.tar.gz。 使用tar -xzvf filename.tar.gz不会提取文件。它给出了这个错误: gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error exit delayed from previous errors
120 linux  file  gzip  tar 



6
将时间戳添加到文件名
我多次遇到此问题,希望在同一目录中拥有同一文件的多个版本。我一直在使用C#进行操作的方法是在文件名中添加一个像这样的时间戳DateTime.Now.ToString().Replace('/', '-').Replace(':', '.')。有一个更好的方法吗?
117 c#  .net  file  datetime  file-io 

18
使用.NET删除目录中3个月以上的文件
我想知道(使用C#)如何删除3个月以上的某个目录中的文件,但是我认为日期期限可能会很灵活。 明确说明:我正在寻找90天之前的文件,换句话说,应该保留少于90天之前创建的文件,删除所有其他文件。
117 c#  .net  file  directory 

5
PHP中的is_file或file_exists
我需要检查文件是否在指定位置($ path。$ file_name)的HDD上。 is_file()和file_exists()函数之间的区别是什么?在PHP中使用哪个更好/更快?
117 php  file  exists 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.