SPSS Python获取活动数据集的文件名

时间:2016-05-19 14:54:59

标签: python filenames spss

在SPSS中,使用Python程序,有没有办法获取Active Dataset的文件名?我不是在谈论数据集名称;我需要文件名。

SPSS_Path=os.path.dirname(SpssClient.GetActiveDataDoc().GetDocumentPath()) 

获取路径,我正在寻找类似的文件名

2 个答案:

答案 0 :(得分:1)

关键是spssaux模块,它与SPSS 23中的Python Essentials一起安装(可能不是旧版本,但我无法测试它)。在IBM论坛上致信this old post

begin program.
import spss,spssaux

#this gets the whole path+filename+fileextension into a string:
Data_Info=str(spssaux.GetDatasetInfo())

#find the position of the last "/" in the above string, to determine the path
Slash_Pos=Data_Info.rfind("/")

#find the position of the last ".", to determine file extension
Ext_Pos=Data_Info.rfind(".")

#get Active File name
SPSS_Name = Data_Info[Slash_Pos+1:Ext_Pos]

#get Active File Path
SPSS_Path=Data_Info[:Slash_Pos+1]

print (SPSS_Name, SPSS_Path)
end program.

答案 1 :(得分:1)

是的,该功能已经存在很长时间了。请注意,活动数据集并不总是具有文件名。