(1)linux判断文件是否存在if [ -f filename]; then
。。。。。。#要执行的语句fi具体例子:file=/usr/local/oracle/oradata/archived_log/file.txtif [ -f
$file ];then #判断文件是否存在,存在就追加 e...
分类:
系统相关 时间:
2014-05-10 01:43:38
阅读次数:
355
1、MessageBox MessageBox.Show("消息内容:" + FileName,
"这是标题", MessageBoxButtons.OK, MessageBoxIcon.Information);Done
分类:
其他好文 时间:
2014-05-09 16:39:03
阅读次数:
264
这篇对应的是习题16,读写文件
# -*- coding: utf-8 -*-
#对文件更多操作复制A文件的内容到B文件
#from sys import argv
from os.path import exists
prompt = "> "
from_file = raw_input("please input the filename where you want to copy...
分类:
编程语言 时间:
2014-05-05 12:54:02
阅读次数:
402
一. 进入vi的命令 vi filename : 打开或新建文件,并将光标置于第一行首 vi
+n filename : 打开文件,并将光标置于第n行首 vi + filename : 打开文件,并将光标置于最后一行首 vi +/xxx
filename:打开文件,并将光标...
分类:
系统相关 时间:
2014-05-04 12:27:32
阅读次数:
439
c#实现pdf另存为功能/// /// PDF另存为效果/// /// PDF文件名///
另存结果文件名public static void PDFSaveAs(String fileName, string saveFileName){
Acrobat.CAcroPDDoc pdfDoc ...
分类:
其他好文 时间:
2014-05-01 20:21:59
阅读次数:
520
1
/******************************************************************** 2 created:
2014/04/29 11:35 3 filename: nth_element.cpp 4 author: ...
分类:
其他好文 时间:
2014-05-01 20:08:30
阅读次数:
404
YII 伪静态 IIS7 方法 web.config 注意把filename
改成对应的yii目录地址,我的这个是把YII嵌套到另一个程序里边了
分类:
Web程序 时间:
2014-05-01 14:06:16
阅读次数:
571
//动态加载一个js/css文件 function
loadjscssfile(filename, filetype) { if (filetype == "js") { var fileref =
document.createEl...
分类:
Web程序 时间:
2014-05-01 00:51:10
阅读次数:
451
【创建目录】using
System.IO;Directory.CreateDirectory(FilePath);【使用WriteFile下载文件】private string
fileName = HttpContext.Current.Server.UrlEncode("规范.rar"); p...
分类:
其他好文 时间:
2014-04-30 23:34:03
阅读次数:
443
<?php
$filename="胡主席好.pdf";
if(!file_exists($filename))
{
echo "不存在此文件";
return;
}
$fp=fopen($filename,"r");
$file_size=filesize($filename);
//配置头文件
/...
分类:
Web程序 时间:
2014-04-29 13:42:20
阅读次数:
356