mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-02 16:28:51 +02:00
22 lines
451 B
Python
22 lines
451 B
Python
from meshroom.core import desc
|
|
|
|
|
|
class Ls(desc.CommandLineNode):
|
|
commandLine = "ls {inputValue} > {outputValue}"
|
|
inputs = [
|
|
desc.File(
|
|
name="input",
|
|
label="Input",
|
|
description="",
|
|
value="",
|
|
)
|
|
]
|
|
|
|
outputs = [
|
|
desc.File(
|
|
name="output",
|
|
label="Output",
|
|
description="",
|
|
value="{nodeCacheFolder}/ls.txt",
|
|
)
|
|
]
|