Win10 Xbox screen recording file storage location and programming related

The Win10 Xbox screen recording function is a convenient tool that allows users to record the screen of games or other applications on their computer. When the recording is completed, the screen recording file will be saved in a specific location. This article will introduce the default storage location of Windows 10 Xbox screen recording files and provide some programming examples to operate these files.

The default storage location of Win10 Xbox screen recording files:

The screen recording files of the Win10 Xbox screen recording function are stored in the user's video folder by default. The specific path is:

C:\Users\用户名\Videos\Captures

Where "username" is the username you use to log into Windows. Under this folder, you can find all video files recorded through the Win10 Xbox screen recording function.

Programming to operate Win10 Xbox screen recording files:

You can use programming languages ​​to operate Win10 Xbox screen recording files. Below is some sample code demonstrating how to obtain and process these files using Python and C#.

Python example code:

import os

# 获取录屏文件夹路径
captures_folder = os.path.join(os.path.expanduser(

Guess you like

Origin blog.csdn.net/CoderExtra/article/details/133447719