mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-01 19:27:10 +02:00
22 lines
468 B
Python
22 lines
468 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=desc.Node.internalFolder + 'ls.txt',
|
|
)
|
|
]
|