码迷,mamicode.com
首页 >  
搜索关键字:chdir    ( 475个结果
Perl语言学习笔记 13 目标操作
1、改变目录 chdir "/etc" or die "can't chdir to '/etc'!\n"; 省略参数会回到用户主目录,与cd效果一样; 2、文件名通配 my @all_files = glob "*"; #不包括以点号开头的文件 my @pm_files = glob "*.pm"; 一次匹配多种模式,用空格隔开:my @files = ".* *"; #可以匹配...
分类:其他好文   时间:2014-08-20 16:23:22    阅读次数:211
FATFS 初学之 f_chdir/ f_chdrive
1 FRESULT f_chdir ( 2 const TCHAR *path /* Pointer to the directory path */ 3 ) 4 { 5 FRESULT res; 6 DIR dj; 7 DEF_NAMEBUF; 8 9 1...
分类:其他好文   时间:2014-08-14 13:45:18    阅读次数:529
php目录操作函数详解
<?phpheader(‘content-type:text/html;charset=utf-8;‘);#目录操作函数详解//1.getcwd(oid):若成功返回当前目录,否则返回falseecho‘<hr>1.getcwd():<br>‘;echogetcwd();//2.chdir():函数把当前的目录改变为指定的目录//chroot():函数把当前进程的根目录改为指..
分类:Web程序   时间:2014-07-28 16:50:34    阅读次数:322
Python学习笔记_Chapter 5处理数据
1. 方法串链(method chaining)、函数串链1 import os2 os.chdir('C:\\Users\\hwx222865\\Documents\\Pyton_lib')3 with open('james.txt') as data:4 s_line=data.rea...
分类:编程语言   时间:2014-07-22 00:07:34    阅读次数:254
hadoop无法启动常见原因
1、Could not chdir to home directory /home/USER: Permission denied启动datanode时会报这个错误,尝试利用ssh登录datanode,发现需要密码。解决办法: 利用root权限修改/etc/sysconfig/selinux,将S....
分类:其他好文   时间:2014-07-21 14:27:28    阅读次数:281
VBA读取可选择文件夹下可选择txt文件内容
Sub OneTxt() '打开一个txt文件 Dim Filename As Variant, extLine&, mArr() As String Dim i%, j% ChDir ThisWorkbook.Path Filename = Application.GetO...
分类:其他好文   时间:2014-07-18 14:29:21    阅读次数:149
python--os模块
os和os.path模块os.listdir(dirname):列出dirname下的目录和文件os.getcwd():获得当前工作目录os.curdir:返回但前目录('.')os.chdir(dirname):改变工作目录到dirnameos.remove(file):删除文件os.path.i...
分类:编程语言   时间:2014-07-11 10:50:08    阅读次数:228
总结文件操作函数-目录(三)-C语言
获取、改变当前目录: 原型为: #include    //头文件 char *getcwd(char *buf, size_t size); //获取当前目录,相当于pwd命令 int chdir(const char *path); //修改当前目录,即切换目录,相当于cd命令 其中getcwd()函数:将当前的工作目录绝对路径复制到参数buf所指的内存空间,参数size为buf的空...
分类:编程语言   时间:2014-07-08 15:39:25    阅读次数:155
大文件不断行切割
#! /usr/bin/python#! -*- coding:utf-8 -*-import osdef SplitFile(cnt): path='e:\data' filename=path+'\\qunti_deal.txt' os.chdir(path) i=0 n=0 siz...
分类:其他好文   时间:2014-07-02 21:15:42    阅读次数:228
[学习笔记] Python标准库简明教程 [转]
1操作系统接口os模块提供了一系列与系统交互的模块:>>> os.getcwd() # Return the current working directory'/home/minix/Documents/Note/Programming/python/lib1'>>> os.chdir('~/p....
分类:编程语言   时间:2014-07-01 14:07:44    阅读次数:249
475条   上一页 1 ... 45 46 47 48 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!