码迷,mamicode.com
首页 >  
搜索关键字:direct path write temp    ( 55479个结果
C#检测驱动是否安装的问题
#region 检测CCD驱动是否安装成功 string path = @"C:\WINDOWS\system32\drivers\UsbCamIF.sys"; //驱动的默认安装地址 if (File.Exists(path)) {...
分类:其他好文   时间:2014-07-11 11:59:29    阅读次数:278
CCParticleSystem粒子系统
欢迎转载!转载时请注明出处:http://write.blog.csdn.net/postedit/8124781第一次接触粒子系统,以前游戏里面的一些小特效,像制作动画一样,是采用一帧一帧的切出来的,由于这种特效,变化无常,切出来的帧,都非常的大,也很耗内存,一下就内存溢出了......呵呵~ 主...
分类:其他好文   时间:2014-07-11 11:51:41    阅读次数:190
创建自己的git版本管理服务器
步骤一:配置权限,让Git用户可以访问这个目录 chmodg+rx/path-to/gitroot步骤二:建立新的Git仓库,叫做myrepocd/path-to/gitrootgitinit--bare myrepo.git步骤三:将能够访问的用户的秘钥添加到自己服务器上面,使他不必每次访问时都....
分类:其他好文   时间:2014-07-11 11:21:09    阅读次数:148
.NETFramework,Version=v4.5.AssemblyAttributes.vb 系统找不到指定的文件
Unable to open module file 'C:\Users\Admin\AppData\Local\Temp\.NETFramework,Version=v4.5.AssemblyAttributes.vb': 系统找不到指定的文件。以管理员身份运行Visual Studio工具解决问...
分类:Web程序   时间:2014-07-11 11:06:43    阅读次数:314
python学习记录第五篇--遍历目录
#coding=utf-8'''@author:简单遍历目录删除文件的小程序'''import os#查找文件操作def findFile(path): fileList=[] for rootPath,subRoot,fileName in os.walk(path): ...
分类:编程语言   时间:2014-07-11 10:59:54    阅读次数:178
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
WPF BitmapImage 图片资源正在被另一个进程使用
做WPF项目时遇到不同进程读取同一个路径的图片,提示图片资源正在被另一个进程使用。string path="c:\\1.png";BitmapImage bp = new BitmapImage(new Uri(path, UriKind.Relative));这时候不同进程用bp是会报错,异常的根...
分类:Windows程序   时间:2014-07-11 10:06:54    阅读次数:243
[MacOS] xcrun: error: active developer path ("/Volumes/Xcode/Xcode6-Beta.app/Contents/Developer") does not exist, use xcode-select to change
When using MacOS with xcode6-beta, i always meet these error:xcrun: error: active developer path ("/Volumes/Xcode/Xcode6-Beta.app/Contents/Developer")...
分类:移动开发   时间:2014-07-11 10:04:53    阅读次数:244
Soceket编程
Socket通讯的过程Server端Listen(监听)某个端口是否有连接请求,Client端向Server端发出Connect(连接)请求,Server端向Client端发回Accept(接受)消息。一个连接就建立起来了。Server端和Client端都可以通过Send,Write等方法与对方通信...
分类:其他好文   时间:2014-07-10 15:21:16    阅读次数:176
Linux动态库(.so)搜索路径
主要内容:1、Linux动态库.so搜索路径编译目标代码时指定的动态库搜索路径;环境变量LD_LIBRARY_PATH指定的动态库搜索路径;配置文件/etc/ld.so.conf中指定的动态库搜索路径;默认的动态库搜索路径/lib;默认的动态库搜索路径/usr/lib。2、通过实例验证五种动态库的搜...
分类:系统相关   时间:2014-07-10 14:59:36    阅读次数:286
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!