码迷,mamicode.com
首页 >  
搜索关键字:folder    ( 1374个结果
如何使用AdvancedInstaller在安装包中运行一个.bat文件
原文: 如何使用AdvancedInstaller在安装包中运行一个.bat文件 1, 首先要保证你的Files and Folders模块下的Application Folder文件夹下包含你要运行的.bat文件。 2, 在Custom Actions模块下的InstallExecuteSeque...
分类:其他好文   时间:2014-11-23 18:48:23    阅读次数:914
(转)Unity Assets目录下的特殊文件夹名称
原文:http://wiki.unity3d.com/index.php/Special_Folder_Names_in_your_Assets_Folder1.隐藏文件夹以.开头的文件夹会被Unity忽略。在这种文件夹中的资源不会被导入,脚本不会被编译。也不会出现在Project视图中。2.Sta...
分类:编程语言   时间:2014-11-22 00:34:16    阅读次数:403
[Grunt] Cleaning your build folder with grunt-contrib-clean
Grunt will clean up your build with the grunt-contrib-clean to make sure that no artifacts from previous builds are hanging around.Install:npm install...
分类:其他好文   时间:2014-11-17 19:14:46    阅读次数:263
Windows下删除.svn文件夹的最简易方法
建立一个文本文件,取名为kill-svn-folders.reg(扩展名由txt改为reg),内容如下:Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN]@=...
分类:Windows程序   时间:2014-11-16 12:03:05    阅读次数:279
Error: Cannot Determine the location of the VS common tools folder
问题描述:打开Visual Studio命令行工具后,输出的错误信息,并且无法直接使用VS自带的工具。原因分析:没有运行正确的命令行工具,导致环境变量设置脚本没有正确运行。解决方案:选择正确的命令行工具运行,如在Windows 8 64位系统Visual Studio 2013的环境下,选择“VS2...
分类:其他好文   时间:2014-11-15 21:46:44    阅读次数:1041
HOW TO: How to import UUID function into Postgre 9.3
1. Open a command console and go to the directory where you installed Postgre server. e.g. D:\Program Files\PostgreSQL\9.3\bin> 2. Drill down into BIN folder and issue following command. psql -d -...
分类:其他好文   时间:2014-11-12 19:51:25    阅读次数:215
Android删除文件夹的代码实现
//删除文件夹 private void deleteDirectory(File folder) { if (folder.exists()) { File[] files = folder.listFiles(); if (files == null) { return; } for (int i = 0; i < files.length; i++) {...
分类:移动开发   时间:2014-11-12 19:49:18    阅读次数:211
Visual Stuido插件大全
JS Enhancements使用JS能像C#代码一样折叠成块Code Compare Code Compare is a powerful file and folder comparison tool that demonstrates new level of code compariso.....
分类:其他好文   时间:2014-11-11 16:13:25    阅读次数:163
SVN 创建分支
2种方法: 1.你用tortoiseSVN点版本库浏览,在需要建立分支的路径(比如trunk)点copy to + 新分支名称(注意:必须与trunk不能同名,你可以新建一个名称比如branch) 2.tortoiseSVN点版本库浏览,你在需要创建的路径下右键tortoiseSVN 选择create folder 然后创建新路径名称(文件夹)然后把主干或者其他分支路径的代码(拉分支这种情况估...
分类:其他好文   时间:2014-11-11 12:44:09    阅读次数:321
django源码解析之BigIntegerField (一)
要分析django的源码,来更深入的学习django,是一个不错的方法,可惜需要大量的时间。所以,能分析多少就是多少吧。本次源码分析以1.4.16为基础。用sublime 打开下载的源码,使用 Find in Folder,查找BigIntegerField在其中可以看到这样的代码:1 1005 ....
分类:其他好文   时间:2014-11-08 07:03:09    阅读次数:215
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!