putFile
Description
Examples
Transfer File from Host Computer to Home Directory on SoC Board
Transfer a file from your host computer to the user home directory on the specified SoC board.
Create a Xilinx® processor hardware object and connect to the processor on-board the Xilinx SoC board.
p = xilinxsoc('192.168.1.101', 'root', 'root');
Use the putFile
function to transfer a file located in the
working MATLAB® folder specified with the file name exampleFile.txt
to
the user home directory on the SoC board.
putFile(p, "exampleFile.txt")
The file exampleFile.txt
is now transferred to your home
directory on the connected SoC board.
Transfer File from Host Computer to a Specified Folder on SoC Board
Transfer a file from your host computer to a specified folder on the SoC board.
Create a Xilinx processor hardware object and connect to the processor on-board the Xilinx SoC board.
p = xilinxsoc('192.168.1.101', 'root', 'root');
Use the putFile
function located in the working MATLAB folder
specified with the file name exampleFile.txt
to the
Documents
folder located in the file path
/home/user/
on the SoC board.
putFile(p, "exampleFile.txt", "/home/user/Documents")
The file exampleFile.txt
is now transferred to your
Documents
folder on the connected SoC board.
Input Arguments
source
— Path and name of file on host computer
character vector | string scalar
Path and name of file on the host computer that you want to transfer to your SoC board. You can use either the absolute path or the relative path from the your current working MATLAB folder.
Example: "exampleFile.txt"
Example: "C:/User/Documents/MATLAB/exampleFile.txt"
destination
— Path and name of folder or file on SoC board
character vector | string scalar
Path and name of folder or file on the SoC board where you want to transfer a file
from the host computer. The destination
path can either be:
A relative path from the user home directory.
An absolute path to a folder.
The destination
can be either:
A folder path where the file is stored in that folder with the original name from the host computer file.
A path to a new file, and the file transferred is stored in the specified path as the new file name.
If no
destination
is specified, the user home directory on the SoC board is
used.
Example: "/home/user/Documents"
Example: "Documents"
Example: "/home/user/Documents/exampleFileBoard.txt"
Version History
Introduced in R2022a
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)