delphi function MakeFileList(Path, FileExt: string): TStringList; var sch: TSearchrec; begin Result := TStringlist.Create; Path := trim(Path); if not DirectoryExists(Path) then begin Result.Clear; Exit; end; if FindFirst(Path + '*', faAnyfile, sch) = 0 then begin repeat // Application.ProcessMessages; if ((sch.Name = '.') or (sch.Name = '..')) then Continue; if DirectoryExists(Path + sch.Name) then begin //Result.AddStrings(MakeFileList(Path+sch.Name,FileExt)); end else begin if (UpperCase(extractfileext(Path + sch.Name)) = UpperCase(FileExt)) or (FileExt = '.*') then Result.Add(Path + sch.Name); end; until FindNext(sch) <> 0; SysUtils.FindClose(sch); end; end;
时间: 2024-05-04 13:18:04 浏览: 183
这是一个Delphi函数,用于获取指定路径下所有符合指定文件扩展名的文件列表,并返回一个TStringList类型的结果。函数名为MakeFileList,参数包括Path和FileExt。函数使用TSearchRec来进行文件搜索,首先判断指定路径是否存在,如果不存在则返回一个空的结果。接着使用FindFirst和FindNext函数来遍历指定路径下的所有文件和文件夹,如果遇到文件夹则递归调用MakeFileList函数来获取该文件夹下符合指定扩展名的文件列表,并将结果添加到当前结果中,如果遇到文件则判断该文件的扩展名是否符合要求,如果符合则将文件的完整路径添加到结果中。最后使用FindClose函数来关闭搜索句柄,并返回结果。
相关问题
using System; using System.IO; using System.Linq; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; namespace FileUpload.Controllers { [ApiController] public class UploadController : ControllerBase { private const int ChunkSize = 1024 * 1024 * 1; // 每个分片的大小,这里设为1MB private const string UploadPath = "uploads"; // 文件上传目录 private static string _filePath; // 完整的文件路径 [HttpPost("/upload/start")] public ActionResult StartUpload(IFormFile file) { if (file == null || file.Length <= 0) { return BadRequest("请选择要上传的文件"); } // 生成文件名 string fileName = file.FileName; string fileExt = Path.GetExtension(fileName); string newFileName = Guid.NewGuid().ToString("N") + fileExt; // 生成文件存储目录 string dirPath = Path.Combine(Directory.GetCurrentDirectory(), UploadPath); if (!Directory.Exists(dirPath)) { Directory.CreateDirectory(dirPath); } // 生成文件路径 _filePath = Path.Combine(dirPath, newFileName); // 返回上传开始的响应 return Ok(new { FileName = newFileName, ChunkSize, }); } [HttpPost("/upload/append")] public ActionResult AppendUpload(string fileName, int chunkIndex, int chunks, IFormFile chunk) { byte[] buffer = new byte[ChunkSize]; int bytesRead = 0; int start = chunkIndex * ChunkSize; // 分片开始位置 int end = Math.Min(start + ChunkSize, (int)chunk.Length); // 分片结束位置 using (Stream stream = chunk.OpenReadStream()) { using (FileStream fileStream = new FileStream(_filePath, FileMode.OpenOrCreate, FileAccess.Write, FileShare.Write)) { fileStream.Position = start; while ((bytesRead = stream.Read(buffer, 0, Math.Min(buffer.Length, end - start))) > 0) { fileStream.Write(buffer, 0, bytesRead); start += bytesRead; } fileStream.Flush(true); } } // 检查是否所有分片都上传成功 int[] uploadedChunks = Directory.GetFiles(Path.GetDirectoryName(_filePath), $"{Path.GetFileName(_filePath)}_*").Select(filepath => int.Parse(filepath.Split('_')[1])).ToArray(); if (uploadedChunks.Length == chunks) { // 合并分片 using (FileStream fileStream = new FileStream(_filePath, FileMode.OpenOrCreate, FileAccess.Write, FileShare.Write)) { foreach (int index in uploadedChunks.OrderBy(i => i)) { string chunkPath = $"{_filePath}_{index}"; using (FileStream chunkStream = new FileStream(chunkPath, FileMode.Open, FileAccess.Read, FileShare.Read)) { chunkStream.CopyTo(fileStream); } System.IO.File.Delete(chunkPath); // 删除已合并的分片 } fileStream.Flush(true); } } return Ok(); } } }
这段代码是一个用于文件上传的 ASP.NET Core 控制器,包含两个 POST 方法:StartUpload 和 AppendUpload。StartUpload 方法接收一个 IFormFile 对象,用于启动文件上传并返回文件名和每个分片的大小。AppendUpload 方法接收文件名、当前分片索引、总分片数和当前分片数据,将当前分片写入文件并检查是否所有分片都上传成功,最后返回 Ok 结果。
uni.request({ url: config.baseUrl + '/API/Task/getToken', method: 'GET', success(res) { that.baseUrl = res.data.domain that.token = res.data.token; // 获取到 token 后再进行上传 that.imgList.push(e.tempFilePaths[0]); const fileName = e.tempFilePaths[0].substr(e.tempFilePaths[0] .lastIndexOf('/') + 1); // 获取文件名 const fileExt = fileName.substr(fileName.lastIndexOf('.') + 1) .toLowerCase(); // 获取文件拓展名,并转换为小写 const today = new Date().toISOString().slice(0, 10); // 获取当天日期,格式为 yyyy-mm-dd const now = new Date(); const year = now.getFullYear(); const month = now.getMonth() + 1; const day = now.getDate(); const hour = now.getHours(); const minute = now.getMinutes(); const currentDateTime = ${year}-${month}-${day}-${hour}:${minute}:00; var nums = []; that.uploadCount++; // 上传次数加一 const newFileName = currentDateTime + '' + that.uploadCount + '.' + fileExt; // 生成新的文件名,以上传次数为前缀 const path = that.fromData.c_name + '/' + that.fromData.a_name + '/' + that.fromData.m_name + '/' + that.fromData.mold + '/' + that.fromData.m_title + '/' + that.fromData.r_name + '-' + that.uploadCount + '/' + that.fromData.o_name + '/' + today; const key = path + '/' + newFileName that.imgData.push(key) uni.uploadFile({ url: 'https://upload-z1.qiniup.com', filePath: e.tempFilePaths[0], name: 'file', formData: { token: res.data.token, key: path + '/' + newFileName // 将路径和文件名拼接起来 }, success(res) { const data = JSON.parse(res.data); const key = data.key const parts = key.split("."); const KeynewName = parts.slice(0, -1).join(".") + ".jpg"; that.baseList.push(that.baseUrl + KeynewName) that.Keyname.push(KeynewName) for (var i = 0; i < that.Keyname.length; i++) { var num = that.Keyname[i].split('/').slice(-1)[0].split('.')[0].split('')[1]; nums.push(num); } console.log('存在的文件名:'+nums) }, fail(erro) { console.log(erro); } }); }, fail(err) { console.log("获取 Token 失败:", err); } });我想让这里的uploadCount先判断nums中存在哪些,uploadCount只能为1,2,3 如果nums存在1,2那么uploadCount只能为3
可以在上传之前先判断 nums 数组中是否存在 1 和 2,并将结果保存在两个变量中,比如 hasOne 和 hasTwo。然后根据这两个变量来判断 uploadCount 的值,如果 hasOne 和 hasTwo 都为 true,那么 uploadCount 只能为 3,否则 uploadCount 可以为 1、2 或 3。可以参考下面的代码:
```
// 判断 nums 数组中是否存在 1 和 2
var hasOne = nums.includes('1');
var hasTwo = nums.includes('2');
// 根据 hasOne 和 hasTwo 来判断 uploadCount 的值
if (hasOne && hasTwo) {
that.uploadCount = 3;
} else {
that.uploadCount = Math.floor(Math.random() * 2) + 1;
}
```
这段代码中,使用了 includes 方法来判断 nums 数组中是否存在 1 和 2,如果存在则将 hasOne 和 hasTwo 设置为 true,否则为 false。然后根据 hasOne 和 hasTwo 的值来判断 uploadCount 的值,如果都为 true,则 uploadCount 只能为 3,否则可以随机生成 1 或 2。
阅读全文