In Windows, files/folders have a special attribute called hidden attribute. By setting this attribute, we can hide files from being displayed in explorer or command prompt. This article explains how to list this hidden files in windows command line a…
为什么在windows里,首选的conda命令行工具是Anaconda command prompt? In windows, what's the difference between command prompt and anaconda prompt Anaconda command prompt is just like command prompt, but it makes sure that you are able to use anaconda and conda comman…
#include <QApplication> #include <QLabel> int main(int argc, char *argv[]) { QApplication app(argc, argv); QLabel *label = new QLabel("Hello Qt!"); label->show(); return app.exec(); } 第1 行和第2 行包含了两个类的定义:QApplication 和QLabel.对于每一个Q…
简单了解Visual Studio的Developer Command Prompt VS2008的命令为:Visual Studio 2008 Command Prompt 目录是: 其详细信息如下: VS2013的命令为:Developer Command Prompt for VS2013 目录是:C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\Shortcuts           查看其他信息,激活和V…
在项目中经常需要使用 Visual Studio Command Prompt编译项目,每次启动时都是默认进入 C:\windows\system32> 目录, 需要cd切换路径,如果把Visual Studio Command Prompt默认启动路径设置为项目路径,那么每次启动只要直接输入msbuild xx.sln就可以编译了,设置方法如下 Right click on "Developer Command Prompt for VS2013" shortcut (whic…
有时候,我们无法找到Visual Studio Command Prompt,需要手动配置 打开 Visual studio2015,选择  "工具"—>"外部工具",点击 "添加" 这里有四个参数需要填写 ---------------------------------------------------------------------------------------------------------- 配置项 值 Title…
macOS finder show hidden files 显示 MacOS 上的隐藏文件和文件夹 https://zh.wikihow.com/显示Mac-OS-X上的隐藏文件和文件夹 $ defaults write com.apple.Finder AppleShowAllFiles YES $ defaults write com.apple.Finder AppleShowAllFiles NO $ defaults write com.apple.finder AppleShowA…
作用:查找指定目录(一个或多个)及子目录下的所有重复文件,分组列出,并可手动选择或自动随机删除多余重复文件,每组重复文件仅保留一份.(支持文件名有空格,例如:"file  name" 等) 实现:find遍历指定目录查找所有文件,并对找到的所有文件进行MD5校验,通过比对MD5值分类处理重复文件. 不足:  find 遍历文件耗时: MD5校验大文件耗时: 对所有文件校验比对耗时(可考虑通过比对文件大小进行第一轮的重复性筛选,此方式针对存放大量大文件的目录效果明显,本脚本未采用): 演…
就在VS2010 Command Prompt 用vcvarsall.bat x64重新设置环境变量的时候,出现了标题中的错误.原因就在参考链接中 References: http://stackoverflow.com/questions/3461275/vs2010-command-prompt-gives-error-cannot-determine-the-location-of-the-vs-comm http://schrievkrom.wordpress.com/2011/01/2…
Request: List the environment variables from Command Promt To list one varibales , the syntax is like : echo %path% To list all variables in command prompt. you can use : set e.g: C:\Users\tcaiy\set you can also sent the output to a output file , whi…