文件操作 - sysmodule.h
返回文件管理
返回主菜单
删除本文件
文件: /opt/alt/python313/include/python3.13/cpython/sysmodule.h
编辑文件内容
#ifndef Py_CPYTHON_SYSMODULE_H # error "this header file must not be included directly" #endif typedef int(*Py_AuditHookFunction)(const char *, PyObject *, void *); PyAPI_FUNC(int) PySys_AddAuditHook(Py_AuditHookFunction, void*); typedef struct { FILE* perf_map; PyThread_type_lock map_lock; } PerfMapState; PyAPI_FUNC(int) PyUnstable_PerfMapState_Init(void); PyAPI_FUNC(int) PyUnstable_WritePerfMapEntry( const void *code_addr, unsigned int code_size, const char *entry_name); PyAPI_FUNC(void) PyUnstable_PerfMapState_Fini(void); PyAPI_FUNC(int) PyUnstable_CopyPerfMapFile(const char* parent_filename); PyAPI_FUNC(int) PyUnstable_PerfTrampoline_CompileCode(PyCodeObject *); PyAPI_FUNC(int) PyUnstable_PerfTrampoline_SetPersistAfterFork(int enable);
修改文件时间
将文件时间修改为当前时间的前一年
删除文件