update samples from Release-129 as a part of SDK release

This commit is contained in:
amlrelsa-ms
2022-03-29 18:28:35 +00:00
parent ceaf82acc6
commit 08b0ba7854
537 changed files with 27112 additions and 151756 deletions

View File

@@ -1,13 +0,0 @@
'''Misc module:
Miscellaneous helper functions and utilities.
'''
import os
import glob
# Helper function to find a file or folder path
def find_path(name, path_prefix):
for root, _, _ in os.walk(path_prefix):
if glob.glob(os.path.join(root, name)):
return root