获取当前应用程序的文件名

Posted 秋月的私语

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取当前应用程序的文件名相关的知识,希望对你有一定的参考价值。

获取应用程序名称,如果文件名在运行时被改变,QueryFullProcessImageName()同样可以获取文件名。

#include "stdafx.h"
#include <Windows.h>
#include <Psapi.h>
#include <stdio.h>

#pragma comment(lib, "Psapi.lib")

void OutputSelfpath()
{
    char szFile[MAX_PATH] = {0};
    GetModuleFileName(NULL, szFile, MAX_PATH);
    printf("GetModuleFileName:\n\r%s\n\n", szFile);

    memset(szFile, 0, MAX_PATH);

    HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, GetCurrentProcessId());
    if (!hProcess)
    {
        printf("OpenProcess failed!\n");
    }
    else
    {
        DWORD dwRet = GetProcessImageFileName(hProcess, szFile, MAX_PATH);
        if (dwRet)
        {
            printf("GetProcessImageFileName:\n\r%s\n\n", szFile);
        }
        else
        {
            printf("GetProcessImageFileName failed!\n");
        }

        DWORD dwSize = MAX_PATH;
        if (QueryFullProcessImageName(hProcess, 0, szFile, &dwSize))
        {
            printf("QueryFullProcessImageName:\n\r%s\n\n", szFile);
        }
        else
        {
            printf("QueryFullProcessImageName failed\n", szFile);
        }
    }
}

int main()
{
    const char* pszFile = "ConsoleTest.exe";
    const char* pszNewFile = "ConsoleTest_bak.exe";
    remove(pszNewFile);

    OutputSelfpath();
    
    int nRet = rename(pszFile, pszNewFile);

    if (0 != nRet)
    {
        printf("rename file failed!\n");
    }
    else
    {
        OutputSelfpath();
    }

    system("pause");
    return 0;
}

 

以上内容转自CSDN,原帖地址:http://bbs.csdn.net/topics/390801866

感谢@mzlogin 的分享。

以上是关于获取当前应用程序的文件名的主要内容,如果未能解决你的问题,请参考以下文章

没有使用 navController.currentDestination?.id 获取当前片段 ID

Android获取各个应用程序的缓存文件代码小片段(使用AIDL)

Android - 获取当前片段

在onBackPressed之外的活动中获取当前片段?

在 android dumpsys 中获取当前可见片段的信息

在 viewpager 中获取当前 Fragment 实例