ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
12
返回列表 发新帖
楼主: aman1516

[求助] 运行powershell解压缩文件,能将.ZIP否改为.RAR

[复制链接]

TA的精华主题

TA的得分主题

发表于 2023-1-27 16:28 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
'利用7zip解压
Sub test()
sFile = "D:\桌面\0120\test\0121.zip"
fd = "D:\桌面\0120\test\"
Shell "cmd /k 7z x " & Chr(34) & sFile & Chr(34) & " -o" & fd, vbHide
End Sub

image.png

TA的精华主题

TA的得分主题

发表于 2023-1-29 12:13 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
解压zip,可以用Windows自带的zip模块,打包为rar,只能只是winrar
  1. Sub Unzip1()
  2.     Dim FSO As Object
  3.     Dim oApp As Object
  4.     Dim Fname As Variant
  5.     Dim FileNameFolder As Variant
  6.     Dim DefPath As String
  7.     Dim strDate As String

  8.     Fname = Application.GetOpenFilename(filefilter:="Zip Files (*.zip), *.zip", _
  9.                                         MultiSelect:=False)
  10.     If Fname = False Then
  11.         'Do nothing
  12.     Else
  13.         'Root folder for the new folder.
  14.         'You can also use DefPath = "C:\Users\Ron\test"
  15.         DefPath = Application.DefaultFilePath
  16.         If Right(DefPath, 1) <> "" Then
  17.             DefPath = DefPath & ""
  18.         End If

  19.         'Create the folder name
  20.         strDate = Format(Now, " dd-mm-yy h-mm-ss")
  21.         FileNameFolder = DefPath & "MyUnzipFolder " & strDate & ""

  22.         'Make the normal folder in DefPath
  23.         MkDir FileNameFolder

  24.         'Extract the files into the newly created folder
  25.         Set oApp = CreateObject("Shell.Application")

  26.         oApp.Namespace(FileNameFolder).CopyHere oApp.Namespace(Fname).items

  27.         'If you want to extract only one file you can use this:
  28.         'oApp.Namespace(FileNameFolder).CopyHere _
  29.          'oApp.Namespace(Fname).items.Item("test.txt")

  30.         MsgBox "You find the files here: " & FileNameFolder

  31.         On Error Resume Next
  32.         Set FSO = CreateObject("scripting.filesystemobject")
  33.         FSO.deletefolder Environ("Temp") & "\Temporary Directory*", True
  34.     End If
  35. End Sub
复制代码

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2023-1-29 12:24 | 显示全部楼层
压缩rar,winrar 都是必要的,干脆都用winrar解压zip,转为rar。
add the folder "c:\latest data" to archive Info.rar 打包rar
WinRAR a Info.rar "c:\latest data"

unpack the archive Info.rar to folder d:\data  解压rar
WinRAR x Info.rar d:\data\

或者
WinRAR cv -y c:\files\1.zip  转换文件

WinRAR帮助.zip

418.46 KB, 下载次数: 2

内有命令行帮助文件

TA的精华主题

TA的得分主题

 楼主| 发表于 2023-1-29 22:45 | 显示全部楼层
smsn 发表于 2023-1-29 12:24
压缩rar,winrar 都是必要的,干脆都用winrar解压zip,转为rar。
add the folder "c:\latest data" to arc ...

知其然知其所以然,感谢分享!

您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-19 14:25 , Processed in 0.028989 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表