Tag: 文件

在C#中从完整的文件pathparsing目录名

如果我有一个stringvariables有: "C:\temp\temp2\foo\bar.txt" 我想得到 “富” 做这个的最好方式是什么?

如何找出文件是否在`eof`?

fp = open("a.txt") #do many things with fp c = fp.read() if c is None: print 'fp is at the eof' 除了上面的方法,还有其他什么方法来查明是否fp已经在eof?

CordovaResourceApi导入未解决的phonegap

我使用phonegap-2.9.0与文件插件。 当我为android平台构build项目时,会在src/文件夹中创build两个包: org.apache.cordova.file org.apache.cordova.filetransfer 我在这两个软件包中得到了以下错误: 1 – org.apache.cordova.file.FileUtils Method testSaveLocationExists() from the type DirectoryManager is not visible Method getFreeDiskSpace() from the type DirectoryManager is not visible Method testFileExists() from the type DirectoryManager is not visible 2 – org.apache.cordova.filetransfer.FileTransfer import org.apache.cordova.CordovaResourceApi unresolved import org.apache.cordova.CordovaResourceApi.OpenForReadResult unresolved 有人能告诉我该怎么办才能解决这些问题吗? 谢谢。

在PHP中使用cURL发布文件string?

我想知道是否有可能发布一个文件 – 连同其他表单数据 – 当文件只是一个string? 我知道你可以通过在文件path前加“@”来发布已经在文件系统上的文件。 不过,我想绕过创build一个临时文件,只发送文件作为string,但我不确定如何使用PHP中的cURL构造请求。 干杯 $postFields = array( 'otherFields' => 'Yes' ,'filename' => 'my_file.csv' ,'data' => 'comma seperated content' ); $options = array( CURLOPT_RETURNTRANSFER => true ,CURLOPT_SSL_VERIFYPEER => false ,CURLOPT_SSL_VERIFYHOST => 1 ,CURLOPT_POSTFIELDS => $postFields ,CURLOPT_HTTPHEADER => array( 'Content-type: multipart/form-data' ) );

Python使用basicConfig方法login到控制台和文件

我不知道为什么这个代码打印到屏幕上,而不是文件? 文件“example1.log”被创build,但没有写在那里。 #!/usr/bin/env python3 import logging logging.basicConfig(level=logging.DEBUG, format='%(asctime)s %(message)s', handlers=[logging.FileHandler("example1.log"), logging.StreamHandler()]) logging.debug('This message should go to the log file and to the console') logging.info('So should this') logging.warning('And this, too') 我通过创build一个日志logging对象( 示例代码 )“绕过”了这个问题,但是却让我不知道为什么basicConfig()方法失败了? PS。 如果我将basicConfig调用更改为: logging.basicConfig(level=logging.DEBUG, filename="example2.log", format='%(asctime)s %(message)s', handlers=[logging.StreamHandler()]) 然后,所有日志都在文件中,控制台中不显示任何内容

样式inputtypes文件?

是否可以设置types文件的input元素,而不必担心浏览器的兼容性? 在我的情况下,我需要实现一个背景图像和圆形边框(1px),如果可能的话,button也应该自定义。

如何在Dockerfile中定义一个variables?

在我的Dockerfile中 ,我想定义 稍后可以在Dockerfile中使用的variables 。 我知道ENV指令,但我不希望这些variables是环境variables。 有没有办法在Dockerfile作用域声明variables ?

如何将DOMPDF生成的内容保存到文件?

我正在使用Dompdf来创buildPDF文件,但我不知道为什么它不保存创build的PDF到服务器。 有任何想法吗? require_once("./pdf/dompdf_config.inc.php"); $html = '<html><body>'. '<p>Put your html here, or generate it with your favourite '. 'templating system.</p>'. '</body></html>'; $dompdf = new DOMPDF(); $dompdf->load_html($html); $dompdf->render(); file_put_contents('Brochure.pdf', $dompdf->output());

SHA-256或MD5用于文件完整性

我知道SHA-256在安全性等方面比MD5更受青睐,但是,如果我要用一种方法来检查文件的完整性(即与密码encryption无关),那么有没有什么好处使用SHA-256? 由于MD5是128位和SHA-256是256位(因此是两倍大)… 需要两倍的时间来encryption? 时间不是本质的,就像在备份程序中一样,文件的完整性是需要的,任何人都会反对MD5提出一个不同的algorithm,甚至build议一种不同的技术? 使用MD5产生校验和吗?

如何从文件中提取单个字节块?

在Linux桌面(RHEL4)上,我想从大文件(> 1 Gig)中提取一个范围的字节(通常小于1000)。 我知道文件的偏移量和块的大小。 我可以编写代码来做到这一点,但有没有一个命令行解决scheme? 理想情况下,如下所示: magicprogram –offset 102567 –size 253 < input.binary > output.binary