necst_msgs.srv.File
Data type for transferring file contents.
string
) -- Contents of the file.string
) -- Where the original file was located, possibly with IP address.bool
) -- Whether the file was successfully transferred or not.>>> from necst_msgs.srv import File
>>> msg = File.Request(data=path.read_text(), path=str(path))
>>> response = File.Response(success=True)
string data
string path
---
bool success