mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-01 11:17:53 +02:00
24 lines
509 B
Python
24 lines
509 B
Python
from meshroom.core import desc
|
|
|
|
|
|
class Ls(desc.CommandLineNode):
|
|
commandLine = 'ls {inputValue} > {outputValue}'
|
|
inputs = [
|
|
desc.File(
|
|
name='input',
|
|
label='Input',
|
|
description='''''',
|
|
value='',
|
|
uid=[0],
|
|
)
|
|
]
|
|
|
|
outputs = [
|
|
desc.File(
|
|
name='output',
|
|
label='Output',
|
|
description='''''',
|
|
value=desc.Node.internalFolder + 'ls.txt',
|
|
uid=[],
|
|
)
|
|
]
|