我正在使用Excel 2016 for Mac。我想获取不带扩展名的当前工作簿文件名。在Windows版Excel中,我将执行以下操作:
Dim fso As New Scripting.FileSystemObject
Dim strlogfile As String
strlogfile = ThisWorkbook.Path & Application.PathSeparator & fso.GetBaseName(ThisWorkbook.BaseName) & “.log”
但是在Mac上我无法执行此操作,因为FileSystemObject不存在。