CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz]
CZ | EN | DE
Login or
registration
  Visitors: 9052
Plex.Earth connects AutoCAD and Google Earth

CAD tip CAD tip # 10317:

   
Question CAD 
 %  platform  category 
Q - question

How much slower is saving DWGs to A360 cloud?

A - answer Saving DWG files to a local (or LAN) disc and saving DWG files with copy to the A360 cloud (for web publishing or for backups) take the same time - web transfer will not slow you down. Uploading DWG files to the cloud happens asynchronously, on the background, controlled by the A360 Desktop component (see the Windows taskbar).

You can check the timing of DWG saving yourself, e.g. with the help of the following LISP utility (uses 10 saves):

  
(defun C:TESTA360 ( / total start stop)  
 (setvar "CMDECHO" 0)  
 (setq total 0.0)  
  
 (repeat 10  
 (setq start (getvar "millisecs"))  
 (command "_SAVEAS" "" "")  
 (setq stop (getvar "millisecs"))  
  
 (setq total (+ total (/ (- stop start) 1000.0)))  
 (princ (strcat (rtos total 2 1) "\r"))  
 (command "_DELAY" 4000)  
 )  
  
 (setvar "CMDECHO" 1)  
 (princ (strcat "\nTOTAL: " (rtos total 2 1) " sec"))  
 (princ)  
)  
ACAD
100% *  CAD 
16.5.2015    14080×  
Prices - CAD eShop:
applies to: AutoCAD ·

See also:
Tip 11845:What is the difference between ShareDesignView (2017) and ShareView (2019) in AutoCAD?
Tip 11398:Editing block attributes in AutoCAD mobile.
Tip 10828:How to control download and installation of updates in Autodesk Desktop App?
Tip 10329:Easily share your Fusion 360 design.
Tip 10059:How to view DWG/DXF e-mail attachments on a mobile phone?


Back   All CAD Tips



Have we helped you? If you want to support the CAD Forum web service, consider buying one of our CAD applications, or our custom software development offerings, or donating via PayPal (see above). You may also add a link to your web - like this "fan" link: CAD Forum - tips, utilities, blocks for Autodesk products
CAD:    OS:    Categ: 
Text:  FAQ glossary   



Featuring:
Publish interactive 3D PDF models from AutoCAD, Inventor or Revit with Share3D More info


Please use these tips at your own risk.
Arkance Systems is not responsible for possible problems that may occur as a result of using any of these tips.
TOPlist