码迷,mamicode.com
首页 >  
搜索关键字:file system check    ( 106627个结果
Unity 之 Addressable Asset System 之用工具创建group
代码如下: 1 /// <summary> 2 /// 重置某分组 3 /// </summary> 4 /// <typeparam name="T">资源类型</typeparam> 5 /// <param name="groupName">组名</param> 6 /// <param na ...
分类:编程语言   时间:2021-02-26 13:02:22    阅读次数:0
C#更换桌面壁纸
WallpaperHelper.cs文件: using Microsoft.Win32; using System.IO; using System.Runtime.InteropServices; namespace NPOIDemo { /// <summary> /// 更换壁纸 /// </ ...
分类:Windows程序   时间:2021-02-26 13:00:29    阅读次数:0
js从字符串中提取url
1 function httpString(s) { 2 var reg = /(https?|http|ftp|file):\/\/[-A-Za-z0-9+&@#/%?=~_|!:,.;]+[-A-Za-z0-9+&@#/%=~_|]/g; 3 s = s.match(reg); 4 return ...
分类:Web程序   时间:2021-02-26 13:00:13    阅读次数:0
获得程序窗体标题-FindWindowW需要的参数
1.使用spy++,安装vs c++核心功能才会有,在以下路径 C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools 2.点击工具栏 查找窗口,拖动放到要查找的程序上,点击确定 3. 点击确定 4. ...
分类:Windows程序   时间:2021-02-26 12:59:36    阅读次数:0
软硬链接区别
1、本质 硬链接:本质是同一个文件 软链接:本质还是同一个文件 [root@CentOS8 data]# ln a.txt test/b.txt [root@CentOS8 data]# ll -i a.txt test/b.txt 131 -rw-r--r--. 2 root root 0 Feb ...
分类:其他好文   时间:2021-02-26 12:56:00    阅读次数:0
Fastdfs安装nginx和fastdfs-nginx-module模块后启动nginx报错
[root@localhost logs]# tail -100f error.log ngx_http_fastdfs_process_init pid=11255 [2021-02-24 19:11:20] ERROR - file: ../common/fdfs_http_shared.c, ...
分类:其他好文   时间:2021-02-26 12:54:25    阅读次数:0
WPF 基础 - Binding 对数据的转换和校验
1. Binding 对数据的转换和校验 Binding 中,有检验和转换关卡。 1.1 数据校验 源码: namespace System.Windows.Data { public class Binding : BindingBase { ... public Collection<Valid ...
分类:Windows程序   时间:2021-02-25 12:10:00    阅读次数:0
css选择器(2)
四、伪类选择器 1、动态伪类选择器 动态伪类选择器会根据条件的改变来匹配元素 :link、:visted、:hover、:active 这四个动态伪类选择器一般用在a元素上,分别对应a元素的链接的四个状态: :link:对应链接未被访问的时候 :visted:对应链接被访问的时候 :hover:对应 ...
分类:Web程序   时间:2021-02-25 12:01:41    阅读次数:0
Qt对本地文件的操作
打开本地文件: QDesktopServices::openUrl(QUrl::fromLocalFile("文件路径")); 重命名: QFile file("C:xx.txt"); file.rename(C:xxx.txt); 删除文件: QFile::remove("文件路径"); 文件拷贝 ...
分类:其他好文   时间:2021-02-25 12:00:25    阅读次数:0
Java随机减法题,单分支的应用实例
/*每次产生5个随机减法算术题,提示用户输入答案,并判断是否正确,最后显示正确答案以及答题时间涉及知识点:1.随机数的生成方法Math.random()2.条件分支语句if3.获取时间System.currentTimeMillis(),4.三元运算符代替if5.String 的巧妙使用 */pac ...
分类:编程语言   时间:2021-02-25 11:58:49    阅读次数:0
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!