码迷,mamicode.com
首页 >  
搜索关键字:find file    ( 74561个结果
Oracle 使用scott用户 set utotrace on报错 SP2-0618,SP2-0611
使用scott用户 set utotrace on报错 SCOTT@TEST0422>set autotrace on SP2-0618: Cannot find the Session Identifier.  Check PLUSTRACE role is enabled SP2-0611: Error enabling STATISTICS report SCOTT@TEST...
分类:数据库   时间:2014-05-10 19:35:23    阅读次数:389
读书笔记-APUE第三版-(5)标准IO库
ISO C标准I/O库使用流的概念读写文件。流是对数据传输的抽象,可以把流理解为从起点到终点间的字节序列。 标准I/O库通过维护进程空间内的缓冲区,减少read/write系统调用次数来提高I/O效率。之前介绍的Unbuffered I/O和文件描述符fd打交道,标准I/O则使用FILE指针。 typedef struct{ short level;/*缓冲区满程度*/ uns...
分类:其他好文   时间:2014-05-10 09:37:37    阅读次数:388
vim打开多个文件方式及操作
格式如下:#vim file*.txt 或者 #vim file file2 file3查看当前编程的是那个文件,在冒号命令行下:args 命令,类似:file [file2],以中括号里面为当前编辑的文件 ;:next 转到下一个文件可以简写:n ;:prev 转到上一个文件,简写无效;:last...
分类:其他好文   时间:2014-05-07 18:39:54    阅读次数:233
XML
xml(可扩展的标记语言)w3c组织用XML的来描述有如下特征:1:自描述性2:现在可以跨操作系统平台,跨编程语言。3:保留了面向对象编程的层次性语法:序言+文档元素 序言(1:xml声明必须写的,2:处理指令 3:文档类型定义 4:注释) 文档元素(属性,元素,...
分类:其他好文   时间:2014-05-07 17:49:24    阅读次数:285
linux find命令
由于find具有强大的功能,所以它的选项也很多,其中大部分选项都值得我们花时间来了解一下。即使系统中含有网络文件系统( N F S ),find命令在该文件系统中同样有效,只你具有相应的权限。在运行一个非常消耗资源的find命令时,很多人都倾向于把它放在后台执行,因为遍历一个大的文件系统可能会花费很...
分类:系统相关   时间:2014-05-07 10:24:54    阅读次数:380
常见shell操作
一、find命令详细find命令 -- 之查找指定时间内修改过的文件比如我们要查找linux下指定时间内做过改动的文件,我们可以用find命令,其实find命令的功能十分强大,下面我们通过几个简单的例子来学习下find命令的简单用法:find /opt -iname "*" -atime 1 -ty...
分类:其他好文   时间:2014-05-07 10:11:08    阅读次数:330
删掉windows系统记住的WIFI密码
cmd下面运行netsh wlan delete profile name=* i=*
分类:Windows程序   时间:2014-05-07 10:10:32    阅读次数:367
水题一枚
Description Given a code (not optimized), and necessary inputs, you have to find the output of the code for the inputs. The code is as follows: int a,...
分类:其他好文   时间:2014-05-07 09:56:16    阅读次数:310
Leetcode | Binary Tree Maximum Path Sum
Given a binary tree, find the maximum path sum.The path may start and end at any node in the tree.For example:Given the below binary tree, 1 ...
分类:其他好文   时间:2014-05-07 09:36:09    阅读次数:300
ASP.NET MVC 动态加载图像
private ImageInfo CreateImageFile(string fileName) { if (!File.Exists(fileName)) return null; Image image = Image.FromFile(fileName); MemoryStream ms....
分类:Web程序   时间:2014-05-06 10:01:43    阅读次数:313
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!