-1

Is there a way I can autosave autocad files or changes on the autocad files directly to S3 Bucket?, probably an API I can utilize for this workflow?

tom_cruz
  • 411
  • 1
  • 6
  • 15

1 Answers1

0

While I was not able to quickly find a plug in that does that for you, what you can do is one of the following:

  1. Mount S3 bucket as a drive. You can read more at CloudBerry Drive - Mount S3 bucket as Windows drive

This might create some performance issues with AutoCad.

  1. Sync saved files to S3

You can set a script to run every n minutes that automatically syncs your files to S3 using aws s3 sync. You can read more about AWS S3 Sync here. Your command might look something like

aws s3 sync /path/to/cad/files s3://bucket-with-cad/project/test
Petru Vicol
  • 186
  • 1
  • 10