1 Star 0 Fork 0

知行合一/libfsapfs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
synctestdata.ps1 644 Bytes
一键复制 编辑 原始数据 按行查看 历史
Joachim Metz 提交于 2023-07-22 17:47 . Applied updates
# Script that synchronizes the local test data
#
# Version: 20230709
$TestSet = "public"
$TestInputDirectory = "tests/input"
$TestFiles = "apfs.raw"
If (-Not (Test-Path ${TestInputDirectory}))
{
New-Item -Name ${TestInputDirectory} -ItemType "directory" | Out-Null
}
If (-Not (Test-Path "${TestInputDirectory}\${TestSet}"))
{
New-Item -Name "${TestInputDirectory}\${TestSet}" -ItemType "directory" | Out-Null
}
ForEach ($TestFile in ${TestFiles} -split " ")
{
$Url = "https://github.com/log2timeline/dfvfs/blob/main/test_data/${TestFile}?raw=true"
Invoke-WebRequest -Uri ${Url} -OutFile "${TestInputDirectory}\${TestSet}\${TestFile}"
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sszth/libfsapfs.git
git@gitee.com:sszth/libfsapfs.git
sszth
libfsapfs
libfsapfs
main

搜索帮助