我的目标是避免来自VBA调试器的错误消息。需要检查已安装的7-zip版本,程序文件或程序文件(x86):
尝试做简单的“ IF”功能。
Dim PathZipProgram As String
strCommand As String
PathZipProgram = "C:\Program Files(x86)\7-Zip\7z.exe"
If Right(PathZipProgram, 1) Then
PathZipProgram = PathZipProgram
Else
PathZipProgram = "C:\Program Files\7-Zip\7z.exe"
End If
Shell strCommand
strCommand = """" & PathZipProgram & """ a -tzip """
Run Code Online (Sandbox Code Playgroud)
VBA找不到7zip。
我失去了理智。我通过 laravel API 上传文件,它们存储在文件夹中,文件总是获得权限644,有什么方法可以将文件存储为775?
我可以以某种方式将其添加到我的函数中吗?
(0755, true, true)
Run Code Online (Sandbox Code Playgroud)
存储文件的功能:
$result=$request->file('file_path')->store('apiFiles/'.$idParameter);
Run Code Online (Sandbox Code Playgroud)
谢谢你的帮助
我的目标是生成10位随机数并能被9整除。可以通过excel公式或VBA解决这个问题吗?